diff --git a/test/site/content-org/all-posts.org b/test/site/content-org/all-posts.org index 572d7e3..42f56f3 100644 --- a/test/site/content-org/all-posts.org +++ b/test/site/content-org/all-posts.org @@ -4579,6 +4579,10 @@ Short description of this post *bold* -- /italics/ --- +strikethrough+ =monospace= + +These lines \\ +show up with line breaks \\ +but within the same paragraph. #+end_description Post content. ***** Special block description overrides property-set description @@ -4630,6 +4634,10 @@ Short description of this post *bold* -- /italics/ --- +strikethrough+ =monospace= + +These lines \\ +show up with line breaks \\ +but within the same paragraph. #+end_description Post content. ***** Single-line description with backslashes (YAML) :escaping:backslashes:front_matter:single_line: diff --git a/test/site/content/posts/description-multi-line-org-special-block-toml.md b/test/site/content/posts/description-multi-line-org-special-block-toml.md index 02dc133..bb546d7 100644 --- a/test/site/content/posts/description-multi-line-org-special-block-toml.md +++ b/test/site/content/posts/description-multi-line-org-special-block-toml.md @@ -5,6 +5,10 @@ description = """ of this post **bold** -- _italics_ --- ~~strikethrough~~ `monospace` + + These lines
+ show up with line breaks
+ but within the same paragraph. """ tags = ["front-matter", "description", "special-block", "toml", "multi-line"] draft = false diff --git a/test/site/content/posts/description-multi-line-org-special-block-yaml.md b/test/site/content/posts/description-multi-line-org-special-block-yaml.md index 6e50813..bfc3427 100644 --- a/test/site/content/posts/description-multi-line-org-special-block-yaml.md +++ b/test/site/content/posts/description-multi-line-org-special-block-yaml.md @@ -6,6 +6,11 @@ description: > **bold** -- _italics_ --- ~~strikethrough~~ `monospace` + + + These lines
+ show up with line breaks
+ but within the same paragraph. tags: ["front-matter", "description", "special-block", "yaml", "multi-line"] draft: false ---