From 850c10d0634fc4f55e414854239bc32e7446d7cf Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Tue, 7 Aug 2018 15:16:47 -0400 Subject: [PATCH] Update "#+begin_export html" test --- test/site/content-org/all-posts.org | 8 ++++++-- test/site/content/posts/export_block_html.md | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/test/site/content-org/all-posts.org b/test/site/content-org/all-posts.org index 0116579..7eaaf9a 100644 --- a/test/site/content-org/all-posts.org +++ b/test/site/content-org/all-posts.org @@ -5116,13 +5116,16 @@ And Markdown emphasis characters like *, ` and _ will not escaped in here. From {{{oxhugoissue(154)}}}, we see an actual case of where that =*= will need to remain unescaped: -#+begin_src html +#+begin_src org +# Org source +,#+begin_export html
+,#+end_export #+end_src #+begin_export html @@ -5134,7 +5137,8 @@ will need to remain unescaped: #+end_export -/See the Markdown source of this page./ +/See the Markdown source of this page to see the verbatim-inserted +HTML./ * Miscellaneous Front Matter :front_matter: ** Hugo Aliases :aliases: *** Alias without section portion 1 diff --git a/test/site/content/posts/export_block_html.md b/test/site/content/posts/export_block_html.md index e0795d2..a03ca51 100644 --- a/test/site/content/posts/export_block_html.md +++ b/test/site/content/posts/export_block_html.md @@ -12,13 +12,16 @@ And Markdown emphasis characters like *, ` and _ will not escaped in here. From `ox-hugo` Issue #[154](https://github.com/kaushalmodi/ox-hugo/issues/154), we see an actual case of where that `*` will need to remain unescaped: -```html +```org +# Org source +#+begin_export html
+#+end_export ```
@@ -28,4 +31,5 @@ will need to remain unescaped:
-_See the Markdown source of this page._ +_See the Markdown source of this page to see the verbatim-inserted +HTML._