2022-01-11 23:38:28 +01:00
|
|
|
# madblog
|
2022-01-11 20:16:27 +01:00
|
|
|
|
|
|
|
This project provides a minimal blogging platform based on Markdown files.
|
|
|
|
|
2022-01-12 00:19:48 +01:00
|
|
|
## Demos
|
|
|
|
|
|
|
|
This project powers the following blogs:
|
|
|
|
|
|
|
|
- [Platypush](https://blog.platypush.tech)
|
|
|
|
- [My personal blog](https://fabiomanganiello.com)
|
|
|
|
|
2022-01-11 20:16:27 +01:00
|
|
|
## Installation
|
|
|
|
|
|
|
|
```shell
|
|
|
|
$ python setup.py install
|
|
|
|
```
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
```shell
|
|
|
|
# The application will listen on port 8000 and it will
|
|
|
|
# serve the current folder
|
2022-01-11 23:58:20 +01:00
|
|
|
$ madblog
|
2022-01-11 20:16:27 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
```
|
2022-01-11 23:38:28 +01:00
|
|
|
usage: madblog [-h] [--config CONFIG] [--host HOST] [--port PORT] [--debug] [dir]
|
2022-01-11 20:16:27 +01:00
|
|
|
|
|
|
|
Serve a Markdown folder as a web blog.
|
|
|
|
|
|
|
|
The folder should have the following structure:
|
|
|
|
|
|
|
|
.
|
2022-01-11 23:38:28 +01:00
|
|
|
-> config.yaml [recommended]
|
2022-01-11 20:16:27 +01:00
|
|
|
-> markdown
|
|
|
|
-> article-1.md
|
|
|
|
-> article-2.md
|
|
|
|
-> ...
|
|
|
|
-> img [recommended]
|
|
|
|
-> favicon.ico
|
|
|
|
-> icon.png
|
|
|
|
-> image-1.png
|
|
|
|
-> image-2.png
|
|
|
|
-> ...
|
|
|
|
|
|
|
|
positional arguments:
|
2022-01-11 23:38:28 +01:00
|
|
|
dir Base path for the blog (default: current directory)
|
2022-01-11 20:16:27 +01:00
|
|
|
|
|
|
|
options:
|
2022-01-11 23:38:28 +01:00
|
|
|
-h, --help show this help message and exit
|
|
|
|
--config CONFIG Path to a configuration file (default: config.yaml in the blog root directory)
|
|
|
|
--host HOST Bind host/address
|
|
|
|
--port PORT Bind port (default: 8000)
|
|
|
|
--debug Enable debug mode (default: False)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
The application will look for a `config.yaml` file in the current directory if none was
|
|
|
|
specified through the `-c` command-line option. The structure is the following:
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
title: Blog title
|
|
|
|
description: Blog description
|
|
|
|
link: https://link.to.your.blog
|
|
|
|
# Use home_link if you have a different home/portal address
|
|
|
|
# than your blog, otherwise it's the same as `link`
|
|
|
|
home_link: https://link.to.home
|
|
|
|
# Path/URL to the logo (default: /img/icon.png)
|
|
|
|
logo: /path/or/url/here
|
|
|
|
# Blog language (for the RSS feed)
|
|
|
|
language: en-US
|
2022-01-12 21:47:53 +01:00
|
|
|
# Show/hide the header (default: true)
|
|
|
|
header: true
|
2022-01-11 23:38:28 +01:00
|
|
|
|
|
|
|
categories:
|
|
|
|
- category1
|
|
|
|
- category2
|
|
|
|
- category3
|
2022-01-11 20:16:27 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
## Markdown files
|
|
|
|
|
2022-06-14 00:32:35 +02:00
|
|
|
Articles are Markdown files stored under `markdown`. For an article to be correctly rendered,
|
2022-01-11 20:16:27 +01:00
|
|
|
you need to start the Markdown file with the following metadata header:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
[//]: # (title: Title of the article)
|
|
|
|
[//]: # (description: Short description of the content)
|
|
|
|
[//]: # (image: /img/some-header-image.png)
|
|
|
|
[//]: # (author: Author Name <email@author.me>)
|
|
|
|
[//]: # (published: 2022-01-01)
|
|
|
|
```
|
|
|
|
|
2022-06-14 00:32:35 +02:00
|
|
|
If no `markdown` folder exists in the base directory, then the base directory itself will be treated as a root for
|
|
|
|
Markdown files.
|
|
|
|
|
|
|
|
### Folders
|
|
|
|
|
|
|
|
You can organize Markdown files in folders. If multiple folders are present, pages on the home will be grouped by
|
|
|
|
folders.
|
|
|
|
|
2022-01-11 20:16:27 +01:00
|
|
|
## Images
|
|
|
|
|
|
|
|
Images are stored under `img`. You can reference them in your articles through the following syntax:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
![image description](/img/image.png)
|
|
|
|
```
|
|
|
|
|
|
|
|
You can also drop your `favicon.ico` under this folder.
|
|
|
|
|
|
|
|
## LaTeX support
|
|
|
|
|
|
|
|
LaTeX support is built-in as long as you have the `latex` executable installed on your server.
|
|
|
|
|
|
|
|
Syntax for inline LaTeX:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
And we can therefore prove that \( c^2 = a^2 + b^2 \)
|
|
|
|
```
|
|
|
|
|
|
|
|
Syntax for LaTeX expression on a new line:
|
|
|
|
|
|
|
|
```markdown
|
|
|
|
$$
|
|
|
|
c^2 = a^2 + b^2
|
|
|
|
$$
|
|
|
|
```
|
|
|
|
|
|
|
|
## RSS syndacation
|
|
|
|
|
|
|
|
RSS feeds for the blog are provided under the `/rss` URL.
|
2022-01-13 23:34:19 +01:00
|
|
|
|
|
|
|
By default, the whole HTML-rendered content of an article is returned under `rss.channel.item.description`.
|
|
|
|
If you only want to include the short description of an article in the feed, use `/rss?short` instead.
|