-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
77 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
from pathlib import Path | ||
|
||
# This is the only variable to be changed from elsewhere. All the rest should | ||
# remain constant. | ||
cur_file = Path() | ||
|
||
default_md_string = """ | ||
# Heading 1 | ||
## Heading 2 | ||
### Heading 3 | ||
#### Heading 4 | ||
##### Heading 5 | ||
###### Heading 6 | ||
Heading 1 | ||
========= | ||
Heading 2 | ||
--------- | ||
Some paragraph text. | ||
Line Breaks with two spaces on the end of the line. | ||
Line two. | ||
Line three. | ||
- item one | ||
- item two | ||
- item one | ||
- item two | ||
- item three | ||
Horizontal rule. | ||
--- | ||
1. item one | ||
2. item two | ||
1. item one | ||
2. item two | ||
3. item three | ||
_Italic_ | ||
*italic* | ||
**bold** | ||
__Bold__ | ||
***Bold Italic*** | ||
___Bold Italic___ | ||
> Blockquotes. | ||
> | ||
> Multiple paragraphs with a > symbol on the empty line. | ||
> Blockquotes. | ||
> | ||
>> Nested paragraphs with a >> symbol. | ||
> #### Using other elements | ||
> | ||
> - works with blockquotes | ||
> - just like it would | ||
> | ||
> *do* **normally**. | ||
Here is an `inline` code block. | ||
``` | ||
This is a fenced code block. | ||
``` | ||
""" |