{"id":31785582,"url":"https://github.com/iwillig/daily-record","last_synced_at":"2025-10-10T11:59:37.530Z","repository":{"id":318041972,"uuid":"1069798784","full_name":"iwillig/daily-record","owner":"iwillig","description":"A tool for managing your work and knowledge","archived":false,"fork":false,"pushed_at":"2025-10-04T16:55:45.000Z","size":333,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-04T18:33:23.796Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Clojure","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iwillig.png","metadata":{"files":{"readme":"docs/README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-04T16:40:26.000Z","updated_at":"2025-10-04T16:55:49.000Z","dependencies_parsed_at":"2025-10-04T18:33:34.732Z","dependency_job_id":null,"html_url":"https://github.com/iwillig/daily-record","commit_stats":null,"previous_names":["iwillig/daily-record"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/iwillig/daily-record","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fdaily-record","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fdaily-record/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fdaily-record/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fdaily-record/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iwillig","download_url":"https://codeload.github.com/iwillig/daily-record/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iwillig%2Fdaily-record/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279003726,"owners_count":26083610,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-10T02:00:06.843Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-10T11:59:35.934Z","updated_at":"2025-10-10T11:59:37.523Z","avatar_url":"https://github.com/iwillig.png","language":"Clojure","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docs for Daily Record\n\nA brief description of your documentation project\n\n## Setup\n\nThis project uses `pipenv` for dependency management. To install dependencies:\n\n```bash\npipenv install\n```\n\n## Quick Start\n\n1. **Write your documentation** in org-mode format in the `chapters/` directory\n2. **Build the documentation**: `make`\n3. **Preview locally**: `make serve` (opens at http://localhost:4030)\n\n## Project Structure\n\n```\ndocs/\n├── chapters/           # Your documentation chapters (org files)\n├── css/               # Styling (Pico.css + custom)\n├── templates/         # HTML templates for Pandoc\n├── tools/             # Utility scripts\n├── metadata.yml       # Book metadata and configuration\n├── Makefile          # Build commands\n└── Pipfile           # Python dependencies\n```\n\n## Available Commands\n\n### Building\n\n- `make` or `make index.html` - Build the documentation\n- `make clean` - Remove generated files\n- `make ba` - Clean and rebuild everything\n\n### Development\n\n- `make serve` - Start local web server (port 4030)\n- `make watch` - Auto-rebuild on file changes\n- `make typos` - Check for typos\n- `make check` - Run all checks (lint, typos)\n\n### Code Quality\n\n- `make lint` - Check Python code style\n- `make format` - Format Python code\n- `make lint-fix` - Auto-fix linting issues\n\n## Writing Documentation\n\n### Adding New Chapters\n\n1. Create a new `.org` file in the `chapters/` directory\n2. Add the file path to the `sections` list in `metadata.yml`\n3. Rebuild with `make`\n\n### Org-Mode Syntax\n\nThe documentation uses org-mode syntax. Here are common elements:\n\n```org\n* Heading 1\n** Heading 2\n*** Heading 3\n\n*bold* /italic/ _underline_ +strikethrough+ =verbatim= ~code~\n\n- Bullet list\n  - Nested item\n\n1. Numbered list\n2. Second item\n\n#+BEGIN_SRC python\ndef example():\n    return \"code block\"\n#+END_SRC\n\n[[https://example.com][External link]]\n```\n\n## Features\n\n- **Pandoc-based build** - Converts org-mode to beautiful HTML\n- **Pico.css styling** - Clean, responsive design\n- **Table of contents** - Auto-generated from headings\n- **Syntax highlighting** - For code blocks\n- **Live reload** - With `make watch`\n- **Python tooling** - Managed with pipenv\n\n## Requirements\n\n- Python 3.13+\n- Pandoc\n- yq (for YAML processing)\n- Make\n\n### Installing Dependencies\n\n#### macOS\n```bash\nbrew install pandoc yq\npipenv install\n```\n\n#### Ubuntu/Debian\n```bash\napt-get install pandoc\nsnap install yq\npipenv install\n```\n\n## Author\n\nIvan Willig \u003ciwillig@gmail.com\u003e\n\n## License\n\nCopyright © 2025 Ivan Willig","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwillig%2Fdaily-record","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiwillig%2Fdaily-record","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiwillig%2Fdaily-record/lists"}