Update "#+begin_export html" test

master
Kaushal Modi 8 years ago
parent c5bccd5b77
commit 850c10d063
  1. 8
      test/site/content-org/all-posts.org
  2. 8
      test/site/content/posts/export_block_html.md

@ -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
<div>
<script type="text/javascript">
var a = 3;
var b = 2*a;
</script>
</div>
,#+end_export
#+end_src
#+begin_export html
@ -5134,7 +5137,8 @@ will need to remain unescaped:
</div>
#+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

@ -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
<div>
<script type="text/javascript">
var a = 3;
var b = 2*a;
</script>
</div>
#+end_export
```
<div>
@ -28,4 +31,5 @@ will need to remain unescaped:
</script>
</div>
_See the Markdown source of this page._
_See the Markdown source of this page to see the verbatim-inserted
HTML._

Loading…
Cancel
Save