-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from gulyapulya/issue-23
Added italics and bold styling markdown syntax features
- Loading branch information
Showing
4 changed files
with
32 additions
and
17 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -4,11 +4,16 @@ this is not a heading | |
|
||
# this is another heading | ||
|
||
|
||
## this is heading 2 | ||
|
||
Above is to test heading 2 to see if markdown heading is converted into html link | ||
|
||
This line is to test markdown [link1](http://test.com/test). | ||
|
||
This is another test for markdown [link2](https:dev.to/my-blog). One more [link3]([email protected]) in the same line. | ||
This is another test for markdown [link2](https:dev.to/my-blog). One more [link3]([email protected]) in the same line. | ||
|
||
This line is to test italics in different forms such as : *asterisk italics* and _underscore italics_. | ||
|
||
This line is to test bold in different forms such as : **asterisk bold** and __underscore bold__. | ||
|
||
This line is to test bold and italics combined : ***asterisk bold and italic*** and ___underscore bold and italic___. |
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