static copy of blog
- https://iqonda.com/blog Astro main blog
- https://s2-blog.iqonda.com mdwiki on AWS s3 bucket
- https://s1-blog.iqonda.com mkdocs on AWS s3 bucket
- http://myblog.ls-al.com/#!index.md mkdocs on Azure object storage
Old: Wordpress blog.iqonda.net.
Static site mkdocs setup steps
mkdocs new [dir-name]- Create a new project.mkdocs serve- Start the live-reloading docs server.mkdocs build- Build the documentation site.mkdocs -h- Print help message and exit.
My custom/clean scripts
python3 organize.py- Take markdown posts and organize into yyyy/mm folders../clean-pre.sh- Clean several old syntax highlighter lines../upload-aws.sh- Upload new site folder after a new build.
mkdocs project layout
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # markdown pages, images and other files.
my additional layout
mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # markdown pages, images and other files.
scripts/
... # clean/organize scripts.