Export blog
Mataroa allows you to export your blog posts into a zip archive that you can directly use to self-host your website. We support five options:
- Markdown: all blog posts as .md files, zip archived
- Book: all blog posts as chapters in an .epub book
- Print: renders all blog posts in one page
- Zola: reliable and simple static site generator
- Hugo: reliable and very popular static site generators
Redirect
If you are retiring your mataroa blog, we can also redirect to your new domain. You can configure this in the bottom last field of your blog settings.
Markdown
Markdown format export in a zip archive.
Book
Book export in an epub format, with blog posts as chapters, a table of contents, and author page.
Renders all blog posts in one page. Useful for exporting the blog into PDF, or printing in dead trees form, or anything that might require bulk copying.
Zola
Zola is a static site generator which focuses in simplicity and lack of verbosity.
To install Zola see here. To use after downloading the zip archive:
cd
into the directory- run
zola serve
- go to
http://127.0.0.1:1111
in your browser
Ready!
You can also host it for free on a number of platforms. There are how-to guides on getzola.org for Netlify, GitHub Pages, GitLab Pages, Vercel, Cloudflare Pages, and one can also use sourcehut pages.
Hugo
Hugo is a very popular and reliable open source static site generator.
To install Hugo see here. To use after downloading the zip archive:
cd
into the directory- run
hugo server
- go to
http://127.0.0.1:1313
in your browser
Ready!
You can also host it for free on a number of platforms. There is a large number of guides on gohugo.io including Netlify, GitHub, GitLab, Render, and many others.