-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(images): add support for image's implicit reference syntax
Closes #366
- Loading branch information
Showing
9 changed files
with
35 additions
and
12 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<p><img src="/path/to/img.jpg" alt="Alt text" /></p> | ||
<p><img src="/path/to/img.jpg" alt="Alt text" title="Optional title" /></p> | ||
<p><img src="url/to/image" alt="Alt text" title="Optional title attribute" /></p> | ||
<p><img src="url/to/image.jpg" alt="Alt text" title="Optional title attribute" /></p> | ||
<p><img src="url/to/image2.jpg" alt="My Image" title="Optional title attribute" /></p> | ||
<p>![leave me alone]</p> | ||
<p>![leave me alone][]</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
<p>Search the web at <a href="http://google.com/">Google</a> or <a href="http://daringfireball.net/">Daring Fireball</a>.</p> | ||
<p>Search the web at <a href="http://google.com/">Google</a> or <a href="http://daringfireball.net/">Daring Fireball</a>.</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
|
||
Search the web at [Google][] or [Daring Fireball][]. | ||
|
||
Search the web at [Google] or [Daring Fireball]. | ||
|
||
|
||
[Google]: http://google.com/ | ||
[Daring Fireball]: http://daringfireball.net/ |