forked from kramdown/parser-gfm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test harness and failing test for GFM autolinking
- Loading branch information
1 parent
f1012be
commit dc74432
Showing
7 changed files
with
42 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ VERSION | |
kramdown-parser-gfm.gemspec | ||
Gemfile | ||
Gemfile.lock | ||
test/gemfiles/*.lock |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
eval_gemfile '../../Gemfile' | ||
# gemspec path: '../../' | ||
|
||
gem 'rinku' |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<p>Here is a markdown style link: <a href="https://github.com/kramdown/parser-gfm">https://github.com/kramdown/parser-gfm></a></p> | ||
|
||
<p>Here is a markdown style minimal link: <a href="https://github.com/kramdown/parser-gfm">https://github.com/kramdown/parser-gfm></a></p> | ||
|
||
<p>Here is a bare (gfm) link: <a href="https://github.com/kramdown/parser-gfm">https://github.com/kramdown/parser-gfm></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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
Here is a markdown style link: [https://github.com/kramdown/parser-gfm](https://github.com/kramdown/parser-gfm) | ||
|
||
Here is a markdown style minimal link: <https://github.com/kramdown/parser-gfm> | ||
|
||
Here is a bare (gfm) link: https://github.com/kramdown/parser-gfm |