diff options
Diffstat (limited to 'vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.text')
-rw-r--r-- | vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.text | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.text b/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.text new file mode 100644 index 000000000..ee9b72900 --- /dev/null +++ b/vendor/michelf/php-markdown/test/resources/php-markdown-extra.mdtest/Link & Image Attributes.text @@ -0,0 +1,10 @@ +This is an [inline link](/url "title"){.class #inline-link}. + +This is a [reference link][refid]. + +This is an ![inline image](/img "title"){.class #inline-img}. + +This is a ![reference image][refid]. + +[refid]: /path/to/something (Title) { .class #ref data-key=val } + |