Update misc.org
a recent org mode update broke goorgeous src blocks - already handled, just added a test case (https://github.com/chaseadamsio/goorgeous/issues/92)
This commit is contained in:
parent
3655a58b63
commit
50395f999a
3 changed files with 59 additions and 10 deletions
47
org/testdata/misc.html
vendored
47
org/testdata/misc.html
vendored
|
@ -48,17 +48,19 @@
|
|||
</li>
|
||||
<li><a href="#headline-22">#87: Markup in footnotes is rendered literally</a>
|
||||
</li>
|
||||
<li><a href="#headline-23">#92: src blocks only render in caps</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="#headline-23">issues (wrongly) filed with hugo</a>
|
||||
<li><a href="#headline-24">issues (wrongly) filed with hugo</a>
|
||||
<ul>
|
||||
<li><a href="#headline-24">#3874 exporting images in org mode</a>
|
||||
<li><a href="#headline-25">#3874 exporting images in org mode</a>
|
||||
</li>
|
||||
<li><a href="#headline-25">#4006 source code blocks in org not rendered correctly</a>
|
||||
<li><a href="#headline-26">#4006 source code blocks in org not rendered correctly</a>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="#headline-26">Footnotes</a>
|
||||
<li><a href="#headline-27">Footnotes</a>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
||||
|
@ -409,10 +411,39 @@ src/example/export blocks should not be converted!
|
|||
<p>
|
||||
footnotes can contain <strong>markup</strong> - and other elements and stuff <sup class="footnote-reference"><a id="footnote-reference-2" href="#footnote-2">2</a></sup>
|
||||
</p>
|
||||
<h2 id="headline-23">
|
||||
<h3 id="headline-23">
|
||||
<span class="todo">DONE</span>
|
||||
<a href="https://github.com/chaseadamsio/goorgeous/issues/92">#92</a>: src blocks only render in caps
|
||||
</h3>
|
||||
<p>
|
||||
The behaviour of Org mode <code class="verbatim"><s TAB</code> changed and it now inserts lowercased src blocks (go-org already handled this one)
|
||||
</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>
|
||||
lowercased:
|
||||
</p>
|
||||
<div class="highlight">
|
||||
<pre>
|
||||
uname -a
|
||||
</pre>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<p>
|
||||
uppercased
|
||||
</p>
|
||||
<div class="highlight">
|
||||
<pre>
|
||||
uname -a
|
||||
</pre>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
<h2 id="headline-24">
|
||||
issues (wrongly) filed with hugo
|
||||
</h2>
|
||||
<h3 id="headline-24">
|
||||
<h3 id="headline-25">
|
||||
<a href="https://github.com/gohugoio/hugo/issues/3874">#3874</a> exporting images in org mode
|
||||
</h3>
|
||||
<p>
|
||||
|
@ -421,7 +452,7 @@ Hello, I'm writing hugo blogs using org-mode.
|
|||
<p>
|
||||
When inserting an image link like <img src="/home/amos/Pictures/Screenshots/img-2017-09-11-165647.png" alt="/home/amos/Pictures/Screenshots/img-2017-09-11-165647.png" title="/home/amos/Pictures/Screenshots/img-2017-09-11-165647.png" />, hugo doesn't export the image.
|
||||
</p>
|
||||
<h3 id="headline-25">
|
||||
<h3 id="headline-26">
|
||||
<a href="https://github.com/gohugoio/hugo/issues/4006">#4006</a> source code blocks in org not rendered correctly
|
||||
</h3>
|
||||
<div class="highlight">
|
||||
|
@ -434,7 +465,7 @@ When inserting an image link like <img src="/home/amos/Pictures/Screenshots/img-
|
|||
(ansi-term))
|
||||
</pre>
|
||||
</div>
|
||||
<h1 id="headline-26">
|
||||
<h1 id="headline-27">
|
||||
Footnotes
|
||||
</h1>
|
||||
<div class="footnotes">
|
||||
|
|
11
org/testdata/misc.org
vendored
11
org/testdata/misc.org
vendored
|
@ -109,7 +109,16 @@ also, consecutive dashes inside
|
|||
|
||||
*** DONE [[https://github.com/chaseadamsio/goorgeous/issues/87][#87]]: Markup in footnotes is rendered literally
|
||||
footnotes can contain *markup* - and other elements and stuff [fn:2:that also goes for *inline* footnote /definitions/]
|
||||
|
||||
*** DONE [[https://github.com/chaseadamsio/goorgeous/issues/92][#92]]: src blocks only render in caps
|
||||
The behaviour of Org mode =<s TAB= changed and it now inserts lowercased src blocks (go-org already handled this one)
|
||||
- lowercased:
|
||||
#+begin_src bash
|
||||
uname -a
|
||||
#+end_src
|
||||
- uppercased
|
||||
#+BEGIN_SRC bash
|
||||
uname -a
|
||||
#+END_SRC
|
||||
** issues (wrongly) filed with hugo
|
||||
*** [[https://github.com/gohugoio/hugo/issues/3874][#3874]] exporting images in org mode
|
||||
Hello, I'm writing hugo blogs using org-mode.
|
||||
|
|
11
org/testdata/misc.pretty_org
vendored
11
org/testdata/misc.pretty_org
vendored
|
@ -109,7 +109,16 @@ also, consecutive dashes inside
|
|||
|
||||
*** DONE [[https://github.com/chaseadamsio/goorgeous/issues/87][#87]]: Markup in footnotes is rendered literally
|
||||
footnotes can contain *markup* - and other elements and stuff [fn:2:that also goes for *inline* footnote /definitions/]
|
||||
|
||||
*** DONE [[https://github.com/chaseadamsio/goorgeous/issues/92][#92]]: src blocks only render in caps
|
||||
The behaviour of Org mode =<s TAB= changed and it now inserts lowercased src blocks (go-org already handled this one)
|
||||
- lowercased:
|
||||
#+BEGIN_SRC bash
|
||||
uname -a
|
||||
#+END_SRC
|
||||
- uppercased
|
||||
#+BEGIN_SRC bash
|
||||
uname -a
|
||||
#+END_SRC
|
||||
** issues (wrongly) filed with hugo
|
||||
*** [[https://github.com/gohugoio/hugo/issues/3874][#3874]] exporting images in org mode
|
||||
Hello, I'm writing hugo blogs using org-mode.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue