This commit is contained in:
parent
c0324c0bc2
commit
cbfa885984
42 changed files with 3701 additions and 547 deletions
19
posthtml-djot/test/expected/basic.html
Normal file
19
posthtml-djot/test/expected/basic.html
Normal file
|
@ -0,0 +1,19 @@
|
|||
<h1>Heading 1</h1>
|
||||
|
||||
|
||||
<p>Paragraph with some text</p>
|
||||
|
||||
|
||||
<div>
|
||||
<ul>
|
||||
<li>List item 1</li>
|
||||
<li>List item 2</li>
|
||||
<li>List item 3</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<section>
|
||||
<blockquote>
|
||||
<p>A quote</p>
|
||||
</blockquote>
|
||||
</section>
|
3
posthtml-djot/test/expected/change-tag.html
Normal file
3
posthtml-djot/test/expected/change-tag.html
Normal file
|
@ -0,0 +1,3 @@
|
|||
<section>
|
||||
<h1>A markdown heading</h1>
|
||||
</section>
|
5
posthtml-djot/test/expected/code.html
Normal file
5
posthtml-djot/test/expected/code.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
<h1>Heading</h1>
|
||||
<pre><code class="language-js">function () {
|
||||
console.log("Hello")
|
||||
}
|
||||
</code></pre>
|
1
posthtml-djot/test/expected/importing-inline.html
Normal file
1
posthtml-djot/test/expected/importing-inline.html
Normal file
|
@ -0,0 +1 @@
|
|||
Hello <em>there</em>
|
2
posthtml-djot/test/expected/importing.html
Normal file
2
posthtml-djot/test/expected/importing.html
Normal file
|
@ -0,0 +1,2 @@
|
|||
<h1>Hello there</h1>
|
||||
<h2>Imported content should be above me</h2>
|
1
posthtml-djot/test/expected/md-options.html
Normal file
1
posthtml-djot/test/expected/md-options.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p><a href="https://example.com">https://example.com</a></p>
|
1
posthtml-djot/test/expected/md-plugin.html
Normal file
1
posthtml-djot/test/expected/md-plugin.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>You can use emojis 😃</p>
|
Loading…
Add table
Add a link
Reference in a new issue