├── .gitignore ├── LICENSE ├── README.md ├── _sass ├── _base.scss ├── _layout.scss ├── custom-styles.scss ├── custom-variables.scss ├── fonts │ ├── PalatinoLinotype-Bold.eot │ ├── PalatinoLinotype-Bold.svg │ ├── PalatinoLinotype-Bold.ttf │ ├── PalatinoLinotype-Bold.woff │ ├── PalatinoLinotype-Bold.woff2 │ ├── PalatinoLinotype-BoldItalic.eot │ ├── PalatinoLinotype-BoldItalic.svg │ ├── PalatinoLinotype-BoldItalic.ttf │ ├── PalatinoLinotype-BoldItalic.woff │ ├── PalatinoLinotype-BoldItalic.woff2 │ ├── PalatinoLinotype-Italic.eot │ ├── PalatinoLinotype-Italic.svg │ ├── PalatinoLinotype-Italic.ttf │ ├── PalatinoLinotype-Italic.woff │ ├── PalatinoLinotype-Italic.woff2 │ ├── PalatinoLinotype-Roman.eot │ ├── PalatinoLinotype-Roman.svg │ ├── PalatinoLinotype-Roman.ttf │ ├── PalatinoLinotype-Roman.woff │ ├── PalatinoLinotype-Roman.woff2 │ ├── cmunbi.eot │ ├── cmunbi.svg │ ├── cmunbi.ttf │ ├── cmunbi.woff │ ├── cmunbx.eot │ ├── cmunbx.svg │ ├── cmunbx.ttf │ ├── cmunbx.woff │ ├── cmunrm.eot │ ├── cmunrm.svg │ ├── cmunrm.ttf │ ├── cmunrm.woff │ ├── cmunsi.eot │ ├── cmunsi.svg │ ├── cmunsi.ttf │ ├── cmunsi.woff │ ├── cmunso.eot │ ├── cmunso.svg │ ├── cmunso.ttf │ ├── cmunso.woff │ ├── cmunss.eot │ ├── cmunss.svg │ ├── cmunss.ttf │ ├── cmunss.woff │ ├── cmunsx.eot │ ├── cmunsx.svg │ ├── cmunsx.ttf │ ├── cmunsx.woff │ ├── cmunti.eot │ ├── cmunti.svg │ ├── cmunti.ttf │ └── cmunti.woff ├── main.scss └── skins │ ├── classic.scss │ ├── dark.scss │ ├── solarized-dark.scss │ └── solarized.scss ├── _templates ├── 404.html ├── _footer.html ├── _gallery.html ├── _head.html ├── _header.html ├── _list.html ├── _properties_table.html ├── archive.html ├── page.html └── test.css ├── notion4ever ├── __init__.py ├── __main__.py ├── markdown_parser.py ├── notion2json.py ├── site_generation.py └── structuring.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | *.pyc 4 | .vscode/settings.json 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Daniil Merkulov 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
publish.yml
The page you are looking for is not found. This can happen because of the redesign, even though I try to preserve the content on this site.
39 | {% set page = site['pages'][site['root_page_id']] %}
40 | Consider visiting main page {% if page.emoji %}
41 | {{page.emoji}} {{page.title}}
42 | {% elif page.icon %}
43 | {{page.title}}
44 | {% else %}
45 | {{page.title}}
46 | {% endif %}
Or take a look at the archive of all posts 🏛 Archive
48 | {% endblock page_content %} -------------------------------------------------------------------------------- /_templates/_footer.html: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /_templates/_gallery.html: -------------------------------------------------------------------------------- 1 |{{property_title}} | 7 |{{property_md}} | 8 |
{{property_title}} | 12 |{{property_md}} | 13 |
{{property_title}} | 17 |{{property_md}} | 18 |
{{property_title}} | 22 |{% for tag in property_md.split(';') %}{{tag}} {% endfor %} | 23 |
{{property_title}} | 27 |{{property_md}} | 28 |
{{property_title}} | 32 |{{property_md}} | 33 |
{{property_title}} | 37 |{{property_md.split('](')[0][1:]}} | 38 |
{{property_title}} | 42 |43 | |
{{property_title}} | 47 |{{property_md.split('](')[0][1:]}} | 48 |
{{property_title}} | 52 |{{property_md}} | 53 |
{{property_title}} | 57 |{{property_md}} | 58 |
{{property_title}} | 62 |{{property_md}} | 63 |