This repository has been archived by the owner on May 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Rename package to zmarkdown * Fix flake8
- Loading branch information
Showing
48 changed files
with
340 additions
and
386 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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
Installing Python-Markdown | ||
Installing ZMArkdown | ||
========================== | ||
|
||
As an Admin/Root user on your system do: | ||
|
||
pip install markdown | ||
pip install zmarkdown | ||
|
||
Or for more specific instructions, view the documentation in `docs/install.txt` | ||
or on the website at <https://pythonhosted.org/Markdown/install.html>. |
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
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 |
---|---|---|
@@ -1,23 +1,23 @@ | ||
DEFAULT: | ||
extensions: | ||
- markdown.extensions.footnotes | ||
- zmarkdown.extensions.footnotes | ||
|
||
abbr: | ||
extensions: | ||
- markdown.extensions.abbr | ||
- zmarkdown.extensions.abbr | ||
|
||
footnotes: | ||
extensions: | ||
- markdown.extensions.footnotes | ||
- zmarkdown.extensions.footnotes | ||
|
||
tables: | ||
extensions: | ||
- markdown.extensions.tables | ||
- zmarkdown.extensions.tables | ||
|
||
extra_config: | ||
extensions: | ||
- markdown.extensions.footnotes | ||
- zmarkdown.extensions.footnotes | ||
extension_configs: | ||
markdown.extensions.footnotes: | ||
zmarkdown.extensions.footnotes: | ||
PLACE_MARKER: ~~~placemarker~~~ | ||
unique_prefix: zds |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
codehilite: | ||
extensions: | ||
- markdown.extensions.codehilite | ||
- zmarkdown.extensions.codehilite | ||
# This passes or not based on version of pygments. | ||
skip: True | ||
|
||
fenced_code: | ||
extensions: | ||
- markdown.extensions.fenced_code | ||
- zmarkdown.extensions.fenced_code | ||
|
||
github_flavored: | ||
extensions: | ||
- markdown.extensions.fenced_code | ||
- zmarkdown.extensions.fenced_code |
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
Oops, something went wrong.