Adding upstream version 0.11.12.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
f89f073565
commit
2f2c7f3767
146 changed files with 9553 additions and 0 deletions
16
roots/test-build/conf.py
Normal file
16
roots/test-build/conf.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
extensions = ["ablog"]
|
||||
|
||||
# Enable Atom feed generation
|
||||
blog_baseurl = "https://blog.example.com/"
|
||||
# Include full post in feeds
|
||||
blog_feed_fulltext = True
|
||||
# Add a social media Atom feed
|
||||
blog_feed_templates = {
|
||||
# Use defaults, no templates
|
||||
"atom": {},
|
||||
# Create content text suitable posting to micro-bogging
|
||||
"social": {
|
||||
# Format tags as hashtags and append to the content
|
||||
"content": "{{ title }}{% for tag in post.tags %}" " #{{ tag.name|trim()|replace(' ', '') }}" "{% endfor %}",
|
||||
},
|
||||
}
|
5
roots/test-build/foo-empty-post.rst
Normal file
5
roots/test-build/foo-empty-post.rst
Normal file
|
@ -0,0 +1,5 @@
|
|||
.. post:: 2021-03-23
|
||||
|
||||
##############
|
||||
Foo Empty Post
|
||||
##############
|
2
roots/test-build/index.rst
Normal file
2
roots/test-build/index.rst
Normal file
|
@ -0,0 +1,2 @@
|
|||
test-build
|
||||
============
|
11
roots/test-build/post.rst
Normal file
11
roots/test-build/post.rst
Normal file
|
@ -0,0 +1,11 @@
|
|||
.. post:: 2022-12-01
|
||||
:tags: Foo Tag, BarTag
|
||||
|
||||
Foo Post Title
|
||||
==============
|
||||
|
||||
Foo post description `with link`_.
|
||||
|
||||
Foo post content.
|
||||
|
||||
.. _`with link`: https://example.com
|
Loading…
Add table
Add a link
Reference in a new issue