This commit is contained in:
parent
c0324c0bc2
commit
cbfa885984
42 changed files with 3701 additions and 547 deletions
17
posthtml-djot/test/fixtures/basic.html
vendored
Executable file
17
posthtml-djot/test/fixtures/basic.html
vendored
Executable file
|
@ -0,0 +1,17 @@
|
|||
<md>
|
||||
# Heading 1
|
||||
</md>
|
||||
|
||||
<markdown>
|
||||
Paragraph with some text
|
||||
</markdown>
|
||||
|
||||
<div md>
|
||||
- List item 1
|
||||
- List item 2
|
||||
- List item 3
|
||||
</div>
|
||||
|
||||
<section markdown>
|
||||
> A quote
|
||||
</section>
|
3
posthtml-djot/test/fixtures/change-tag.html
vendored
Normal file
3
posthtml-djot/test/fixtures/change-tag.html
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
<md tag="section">
|
||||
# A markdown heading
|
||||
</md>
|
9
posthtml-djot/test/fixtures/code.html
vendored
Normal file
9
posthtml-djot/test/fixtures/code.html
vendored
Normal file
|
@ -0,0 +1,9 @@
|
|||
<md>
|
||||
# Heading
|
||||
|
||||
```js
|
||||
function () {
|
||||
console.log("Hello")
|
||||
}
|
||||
```
|
||||
</md>
|
1
posthtml-djot/test/fixtures/importing-inline.html
vendored
Normal file
1
posthtml-djot/test/fixtures/importing-inline.html
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
<md src="test/fixtures/test-inline.md" inline></md>
|
3
posthtml-djot/test/fixtures/importing.html
vendored
Normal file
3
posthtml-djot/test/fixtures/importing.html
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
<md src="test/fixtures/test.md">
|
||||
## Imported content should be above me
|
||||
</md>
|
3
posthtml-djot/test/fixtures/md-options.html
vendored
Normal file
3
posthtml-djot/test/fixtures/md-options.html
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
<md>
|
||||
https://example.com
|
||||
</md>
|
3
posthtml-djot/test/fixtures/md-plugin.html
vendored
Normal file
3
posthtml-djot/test/fixtures/md-plugin.html
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
<md>
|
||||
You can use emojis :)
|
||||
</md>
|
1
posthtml-djot/test/fixtures/test-inline.md
vendored
Normal file
1
posthtml-djot/test/fixtures/test-inline.md
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
Hello _there_
|
1
posthtml-djot/test/fixtures/test.md
vendored
Normal file
1
posthtml-djot/test/fixtures/test.md
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
# Hello there
|
Loading…
Add table
Add a link
Reference in a new issue