├── .env.sample ├── .flake8 ├── .github ├── release-drafter.yml └── workflows │ ├── codeql-analysis.yml │ ├── lint.yml │ ├── release-drafter.yml │ ├── release.yml │ └── test-homebrew.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── docs ├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── _config.yml ├── assets │ └── js │ │ └── search-data.json ├── blogs-using-notoma.md ├── configuration.md ├── contributing.md ├── index.md ├── supported-markdown-tags.md └── using-the-cli.md ├── notebooks ├── contributing.ipynb ├── index.ipynb └── using-the-cli.ipynb ├── notoma ├── __init__.py ├── cli.py ├── config.py ├── core.py ├── dev.py ├── logging.py ├── page.py ├── templates.py └── templates │ ├── blocks │ ├── _bulleted_list.md.j2 │ ├── _callout.md.j2 │ ├── _code.md.j2 │ ├── _header.md.j2 │ ├── _image.md.j2 │ ├── _numbered_list.md.j2 │ ├── _quote.md.j2 │ ├── _subheader.md.j2 │ ├── _subsubheader.md.j2 │ ├── _text.md.j2 │ ├── _todo.md.j2 │ └── _video.md.j2 │ ├── docs-jekyll.md.j2 │ └── post.md.j2 ├── poetry.lock └── pyproject.toml /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.env.sample -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-homebrew.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.github/workflows/test-homebrew.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /docs/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.3 2 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/assets/js/search-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/assets/js/search-data.json -------------------------------------------------------------------------------- /docs/blogs-using-notoma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/blogs-using-notoma.md -------------------------------------------------------------------------------- /docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/configuration.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/supported-markdown-tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/supported-markdown-tags.md -------------------------------------------------------------------------------- /docs/using-the-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/docs/using-the-cli.md -------------------------------------------------------------------------------- /notebooks/contributing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notebooks/contributing.ipynb -------------------------------------------------------------------------------- /notebooks/index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notebooks/index.ipynb -------------------------------------------------------------------------------- /notebooks/using-the-cli.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notebooks/using-the-cli.ipynb -------------------------------------------------------------------------------- /notoma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/__init__.py -------------------------------------------------------------------------------- /notoma/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/cli.py -------------------------------------------------------------------------------- /notoma/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/config.py -------------------------------------------------------------------------------- /notoma/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/core.py -------------------------------------------------------------------------------- /notoma/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/dev.py -------------------------------------------------------------------------------- /notoma/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/logging.py -------------------------------------------------------------------------------- /notoma/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/page.py -------------------------------------------------------------------------------- /notoma/templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates.py -------------------------------------------------------------------------------- /notoma/templates/blocks/_bulleted_list.md.j2: -------------------------------------------------------------------------------- 1 | - {{block.title}} 2 | -------------------------------------------------------------------------------- /notoma/templates/blocks/_callout.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/blocks/_callout.md.j2 -------------------------------------------------------------------------------- /notoma/templates/blocks/_code.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/blocks/_code.md.j2 -------------------------------------------------------------------------------- /notoma/templates/blocks/_header.md.j2: -------------------------------------------------------------------------------- 1 | # {{ block.title }} 2 | 3 | -------------------------------------------------------------------------------- /notoma/templates/blocks/_image.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/blocks/_image.md.j2 -------------------------------------------------------------------------------- /notoma/templates/blocks/_numbered_list.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/blocks/_numbered_list.md.j2 -------------------------------------------------------------------------------- /notoma/templates/blocks/_quote.md.j2: -------------------------------------------------------------------------------- 1 | > {{ block.title }} 2 | -------------------------------------------------------------------------------- /notoma/templates/blocks/_subheader.md.j2: -------------------------------------------------------------------------------- 1 | ## {{block.title}} 2 | 3 | -------------------------------------------------------------------------------- /notoma/templates/blocks/_subsubheader.md.j2: -------------------------------------------------------------------------------- 1 | ### {{block.title}} 2 | 3 | -------------------------------------------------------------------------------- /notoma/templates/blocks/_text.md.j2: -------------------------------------------------------------------------------- 1 | {{ block | preprocess_notion_links }} 2 | -------------------------------------------------------------------------------- /notoma/templates/blocks/_todo.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/blocks/_todo.md.j2 -------------------------------------------------------------------------------- /notoma/templates/blocks/_video.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/blocks/_video.md.j2 -------------------------------------------------------------------------------- /notoma/templates/docs-jekyll.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/docs-jekyll.md.j2 -------------------------------------------------------------------------------- /notoma/templates/post.md.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/notoma/templates/post.md.j2 -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natikgadzhi/notoma/HEAD/pyproject.toml --------------------------------------------------------------------------------