Skip to content

Commit

Permalink
Tests: added GitlabMarkdown test
Browse files Browse the repository at this point in the history
  • Loading branch information
xenocrat committed May 31, 2024
1 parent 7350099 commit 1560f8d
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/data/GitlabMarkdown/018.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<ul>
<li>
<p>✅ Completed task</p>
</li>
<li>
<p>🚫 Inapplicable task</p>
</li>
<li>
<p>❎ Incomplete task</p>
<ul>
<li>✅ Sub-task 1</li>
<li>🚫 Sub-task 2</li>
<li>❎ Sub-task 3</li>
</ul>
</li>
</ul>
<ol>
<li>
<p>✅ Completed task</p>
</li>
<li>
<p>🚫 Inapplicable task</p>
</li>
<li>
<p>❎ Incomplete task</p>
<ol>
<li>✅ Sub-task 1</li>
<li>🚫 Sub-task 2</li>
<li>❎ Sub-task 3</li>
</ol>
</li>
</ol>
13 changes: 13 additions & 0 deletions tests/data/GitlabMarkdown/018.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
- [x] Completed task
- [~] Inapplicable task
- [ ] Incomplete task
- [x] Sub-task 1
- [~] Sub-task 2
- [ ] Sub-task 3

1. [x] Completed task
1. [~] Inapplicable task
1. [ ] Incomplete task
1. [x] Sub-task 1
1. [~] Sub-task 2
1. [ ] Sub-task 3

0 comments on commit 1560f8d

Please sign in to comment.