diff options
author | lns <matzeton@googlemail.com> | 2021-10-20 19:58:38 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2021-10-20 19:58:38 +0200 |
commit | 384724a00be9dbb8f40d295f99b9c6bcfb48b387 (patch) | |
tree | 6e053365bb995bf675397368281c0a3ff92bd9fc /blog | |
parent | 7b01dd8e4b1779e4c4dd782dbec87acce0f4754b (diff) |
Added MD4C support to render HTML from Markdown text.
* additional blog metadata properties
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'blog')
-rw-r--r-- | blog/my-second-blog-entry.json | 5 | ||||
-rw-r--r-- | blog/my-second-blog-entry.md | 3 | ||||
-rw-r--r-- | blog/my-third-blog-entry.json | 8 | ||||
-rw-r--r-- | blog/my-third-blog-entry.md | 2 | ||||
-rw-r--r-- | blog/my-very-first-blog-entry.json | 5 |
5 files changed, 21 insertions, 2 deletions
diff --git a/blog/my-second-blog-entry.json b/blog/my-second-blog-entry.json index b8c2ec0..ecb2b8b 100644 --- a/blog/my-second-blog-entry.json +++ b/blog/my-second-blog-entry.json @@ -1,5 +1,8 @@ { + "title": "Second blog entry.", + "tags": [ "bla" ], + "author": "lns", "createDate": "23.02.1989 23:59", "publishDate": "30.12.2020 1:00", - "published": false + "published": true } diff --git a/blog/my-second-blog-entry.md b/blog/my-second-blog-entry.md index 292b1e1..054046a 100644 --- a/blog/my-second-blog-entry.md +++ b/blog/my-second-blog-entry.md @@ -1,2 +1,5 @@ Text ======= + +*lorem* **ipsum** +~~striked~~ diff --git a/blog/my-third-blog-entry.json b/blog/my-third-blog-entry.json new file mode 100644 index 0000000..9682cd2 --- /dev/null +++ b/blog/my-third-blog-entry.json @@ -0,0 +1,8 @@ +{ + "title": "Third.", + "tags": [ "test" ], + "author": "lns", + "createDate": "24.02.1989 23:59", + "publishDate": "31.12.2020 1:00", + "published": false +} diff --git a/blog/my-third-blog-entry.md b/blog/my-third-blog-entry.md new file mode 100644 index 0000000..292b1e1 --- /dev/null +++ b/blog/my-third-blog-entry.md @@ -0,0 +1,2 @@ +Text +======= diff --git a/blog/my-very-first-blog-entry.json b/blog/my-very-first-blog-entry.json index dec2711..52f52f7 100644 --- a/blog/my-very-first-blog-entry.json +++ b/blog/my-very-first-blog-entry.json @@ -1,5 +1,8 @@ { + "title": "My first blog entry!", + "tags": [ "test", "bla" ], + "author": "lns", "createDate": "22.02.1989 23:59", "publishDate": "31.12.2020 1:00", - "published": false + "published": true } |