-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This allows any content under an SH that is either normal text or entities to be serialised on the same line as SH instead of the subsequent line. Properly call this "headerhack" to point out that this is not because of lowdown or man(7), but other buggy software. References #138
- Loading branch information
1 parent
fdef5af
commit 9906f8c
Showing
3 changed files
with
65 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.SH Same line as SH. | ||
.LP | ||
a | ||
.SS | ||
Not same line as SS. | ||
.LP | ||
b | ||
.SH Same \(lqline\(rq. | ||
.LP | ||
c | ||
.SH | ||
Not same \fBline\fR <\fIfoo.com\fR> | ||
.LP | ||
d | ||
.SH | ||
Not same \fIline\fR. | ||
.LP | ||
e | ||
.SH | ||
Not same \fBline\fR. | ||
.LP | ||
e |
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,12 @@ | ||
# Same line as SH. | ||
a | ||
## Not same line as SS. | ||
b | ||
# Same "line". | ||
c | ||
# Not same [line](foo.com) | ||
d | ||
# Not same *line*. | ||
e | ||
# Not same **line**. | ||
e |