diff options
Diffstat (limited to 'vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.xhtml')
-rw-r--r-- | vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.xhtml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.xhtml b/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.xhtml new file mode 100644 index 000000000..a59c0a4d8 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.xhtml @@ -0,0 +1,8 @@ +<p>This is an <a href="/url" title="title" class="class" id="inline-link">inline link</a>.</p> + +<p>This is a <a href="/path/to/something" title="Title" class="class" id="ref" data-key="val">reference link</a>.</p> + +<p>This is an <img alt="inline image" src="/img" title="title" class="class" id="inline-img" />.</p> + +<p>This is a <img alt="reference image" src="/path/to/something" title="Title" class="class" id="ref" data-key="val" />.</p> + |