- Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows.
- Use multiple languages including R, Python, and SQL. R Markdown supports dozens of static and dynamic output formats including HTML, PDF, MS Word.
Links for php-markdown
The official home of the Python Programming Language. For a full list of all the Markdown syntax. All the common coding languages are supported, including C, C, Java, Scala, Python and JavaScript.
Debian Resources:
Download Source Package php-markdown:
Maintainers:
- Teckids Debian Task Force (QA Page)
- Thorsten Glaser (QA Page)
- Dominik George (QA Page)
External Resources:
- Homepage [michelf.ca]
Similar packages:
PHP library for rendering Markdown data
This is a library package that includes the PHP Markdown parser and itssibling PHP Markdown Extra with additional features.
'Markdown' is actually two things: a plain text markup syntax, and asoftware tool that converts the plain text markup to HTML.
The Markdown syntax allows you to write text naturally and format itwithout using HTML tags. More importantly: in Markdown format, your textstays enjoyable to read for a human being, and this is true enough thatit makes a Markdown document publishable as-is, as plain text. If youare using text-formatted email, you already know some part of thesyntax.
Other Packages Related to php-markdown
|
|
|
|
- dep:php-common
- Common files for PHP packages
Download php-markdown
Architecture | Package Size | Installed Size | Files |
---|---|---|---|
all | 32.4 kB | 128.0 kB | [list of files] |
This is a Python implementation of John Gruber’sMarkdown.It is almost completely compliant with the reference implementation,though there are a few very minor differences. See John’sSyntax Documentationfor the syntax rules.
To get started, see the installation instructions, the libraryreference, and the command line interface.
Goals¶
The Python-Markdown project is developed with the following goals in mind:
Maintain a Python library (with an optional CLI wrapper) suited to use in web server environments (never raise an exception, never write to stdout, etc.) as an implementation of the markdown parser that follows the syntax rules and the behavior of the original (markdown.pl) implementation as reasonably as possible (see differences for a few exceptions).
Provide an Extension API which makes it possible to change and/or extend the behavior of the parser.
Features¶
In addition to the basic markdown syntax, Python-Markdown supports the followingfeatures:
International Input
Python-Markdown will accept input in any languagesupported by Unicode including bi-directional text. In fact the test suiteincludes documents written in Russian and Arabic.
Extensions
Various extensions are provided (includingextra) to change and/or extend the base syntax.Additionally, a public Extension API is availableto write your own extensions.
Output Formats
Python-Markdown can output documents with either HTML or XHTML style tags.See the Library Reference for details.
Command Line Interface
In addition to being a Python Library, acommand line script is available for your convenience.
Differences¶
While Python-Markdown strives to fully implement markdown as described in thesyntax rules, the rulescan be interpreted in different ways and different implementationsoccasionally vary in their behavior (see theBabelmark FAQfor some examples). Known and intentional differences found in Python-Markdownare summarized below:
Middle-Word Emphasis
Python-Markdown defaults to ignoring middle-word emphasis (and strongemphasis). In other words,
some_long_filename.txt
will not becomesome<em>long</em>filename.txt
. This can be switched off if desired. Seethe Legacy EM Extension for details.Indentation/Tab Length
The syntax rulesclearly state that when a list item consists of multiple paragraphs, “eachsubsequent paragraph in a list item must be indented by either 4 spacesor one tab” (emphasis added). However, many implementations do not enforcethis rule and allow less than 4 spaces of indentation. The implementers ofPython-Markdown consider it a bug to not enforce this rule.
This applies to any block level elements nested in a list, includingparagraphs, sub-lists, blockquotes, code blocks, etc. They must alwaysbe indented by at least four spaces (or one tab) for each level of nesting.
In the event that one would prefer different behavior,tab_length can be set to whatever length isdesired. Be warned however, as this will affect indentation for all aspectsof the syntax (including root level code blocks). Alternatively, a third party extension may offer a solution that meets your needs.
Consecutive Lists
While the syntax rules are not clear on this, many implementations (includingthe original) do not end one list and start a second list when the list marker(asterisks, pluses, hyphens, and numbers) changes. For consistency,Python-Markdown maintains the same behavior with no plans to change in theforeseeable future. That said, the Sane List Extensionis available to provide a less surprising behavior.
Markdown Syntax In Python
Support¶
Markdown Syntax In Python
You may report bugs, ask for help, and discuss various other issues on the bug tracker.