Skip to content

Commit

Permalink
[TASK] Add tests for nested markdown inline syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
linawolf committed Nov 9, 2024
1 parent a6c12cd commit bc468d5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!-- content start -->

<div class="section" id="markdown-with-emphasis">
<h1>Markdown with emphasis</h1>

<p>If value 1 is given in a field with marker <em>{receiver}</em>, <em><a href="mailto:[email protected]">[email protected]</a></em> should be chosen and if value 2 or something else is given, <em><a href="mailto:[email protected]">[email protected]</a></em> should be chosen.</p>


<p><em>~~<strong>test</strong><code>aaaaa</code> sdaasdsadasdasd~~</em></p>

</div>
<!-- content end -->
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<guides xmlns="https://www.phpdoc.org/guides"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://www.phpdoc.org/guides packages/guides-cli/resources/schema/guides.xsd"
input-format="md"
>
<project title="Project Title" version="6.4"/>
</guides>
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Markdown with emphasis

If value 1 is given in a field with marker *{receiver}*, *[email protected]* should be chosen
and if value 2 or something else is given, *[email protected]* should be chosen.

_~~**test**`aaaaa`
sdaasdsadasdasd~~_

0 comments on commit bc468d5

Please sign in to comment.