-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Repairing setext heading support, certain uses of backticks after Git…
…Hub API format changes (#145) * Fix parsing of HTML returned from raw API Github must have changed something on their end, the HTML seems to have changed a little. * Adding some tests for setext header support * Fixing the formatter * Putting all the tests in the same directory * Closer, but span tag doesn't work in some cases * Fixed span issue * Broke test formatting * fixing local tests - remote is busted, formatting seems very different. --------- Co-authored-by: Jon Burgess <[email protected]>
- Loading branch information
1 parent
c836e5e
commit 656b340
Showing
7 changed files
with
538 additions
and
15 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
File renamed without changes.
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
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
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,44 @@ | ||
Title one | ||
========= | ||
|
||
<!--ts--> | ||
* [Title one](#title-one) | ||
* [This is test for setext-style without formatting](#this-is-test-for-setext-style-without-formatting) | ||
* [<em>Title two</em>](#title-two) | ||
* [This is test for setext-style with formatting](#this-is-test-for-setext-style-with-formatting) | ||
* [Title three](#title-three) | ||
* [This is a regression test for atx-style](#this-is-a-regression-test-for-atx-style) | ||
* [Title four is a particularly long title because of wrapping](#title-four-is-a-particularly-long-title-because-of-wrapping) | ||
* [This is a test for long titles](#this-is-a-test-for-long-titles) | ||
<!--te--> | ||
|
||
Blabla... | ||
|
||
## This is test for setext-style without formatting | ||
|
||
Blabla... | ||
|
||
*Title `two`* | ||
============= | ||
|
||
Blabla... | ||
|
||
## This is test for setext-style with formatting | ||
|
||
Blabla... | ||
|
||
# Title `three` | ||
|
||
Blabla... | ||
|
||
## This is a regression test for atx-style | ||
|
||
Blabla... | ||
|
||
# Title four is a particularly long title because of wrapping | ||
|
||
Blabla... | ||
|
||
## This is a test for long titles | ||
|
||
Blabla... |
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