Add monospace markup to description special block tests

master
Kaushal Modi 8 years ago
parent a806ce53d2
commit f49af5a420
  1. 8
      test/site/content-org/all-posts.org
  2. 2
      test/site/content/posts/description-multi-line-org-special-block-toml.md
  3. 2
      test/site/content/posts/description-multi-line-org-special-block-yaml.md
  4. 2
      test/site/content/posts/description-single-line-org-special-block-toml.md
  5. 2
      test/site/content/posts/description-single-line-org-special-block-yaml.md

@ -4527,7 +4527,7 @@ Testing a post with double quotes in the description.
:EXPORT_FILE_NAME: description-single-line-org-special-block-toml
:END:
#+begin_description
Short description
Short description --- *bold* -- /italics/ --- +strikethrough+ =monospace=
#+end_description
Post content.
***** Multi-line description set using Org Special Block (TOML) :multi_line:
@ -4538,7 +4538,7 @@ Post content.
Short description
of this post
*bold* -- /italics/ --- +strikethrough+
*bold* -- /italics/ --- +strikethrough+ =monospace=
#+end_description
Post content.
***** Special block description overrides property-set description
@ -4561,7 +4561,7 @@ Description set in special block
:EXPORT_FILE_NAME: description-single-line-org-special-block-yaml
:END:
#+begin_description
Short description
Short description --- *bold* -- /italics/ --- +strikethrough+ =monospace=
#+end_description
Post content.
***** Multi-line description set using Org Special Block (YAML) :multi_line:
@ -4572,7 +4572,7 @@ Post content.
Short description
of this post
*bold* -- /italics/ --- +strikethrough+
*bold* -- /italics/ --- +strikethrough+ =monospace=
#+end_description
Post content.
** Locale :locale:

@ -4,7 +4,7 @@ description = """
Short description
of this post
**bold** -- _italics_ --- ~~strikethrough~~
**bold** -- _italics_ --- ~~strikethrough~~ `monospace`
"""
tags = ["front-matter", "description", "special-block", "toml", "multi-line"]
draft = false

@ -5,7 +5,7 @@ description: >
of this post
**bold** -- _italics_ --- ~~strikethrough~~
**bold** -- _italics_ --- ~~strikethrough~~ `monospace`
tags: ["front-matter", "description", "special-block", "yaml", "multi-line"]
draft: false
---

@ -1,6 +1,6 @@
+++
title = "Single-line description set using Org Special Block (TOML)"
description = "Short description"
description = "Short description --- **bold** -- _italics_ --- ~~strikethrough~~ `monospace`"
tags = ["front-matter", "description", "special-block", "toml", "single-line"]
draft = false
+++

@ -1,6 +1,6 @@
---
title: "Single-line description set using Org Special Block (YAML)"
description: "Short description"
description: "Short description --- **bold** -- _italics_ --- ~~strikethrough~~ `monospace`"
tags: ["front-matter", "description", "special-block", "yaml", "single-line"]
draft: false
---

Loading…
Cancel
Save