This commit is contained in:
2023-03-12 21:19:08 +02:00
parent 03557b463a
commit 56b18d31aa
339 changed files with 16782 additions and 918 deletions

View File

@@ -1,18 +1,16 @@
# Created by: Graham Todd <gtodd@bellanet.org>
# $FreeBSD: head/textproc/py-markdown/Makefile 472884 2018-06-20 17:05:41Z mat $
PORTNAME= markdown
PORTVERSION= 2.6.11
PORTVERSION= 3.3.7
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
DISTNAME= Markdown-${PORTVERSION}
MAINTAINER= koobs@FreeBSD.org
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Python implementation of Markdown
WWW= https://github.com/Python-Markdown/markdown
USES= python
USE_PYTHON= distutils concurrent autoplist
USES= python:3.6+
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes

View File

@@ -1,3 +1,3 @@
TIMESTAMP = 1523854686
SHA256 (Markdown-2.6.11.tar.gz) = a856869c7ff079ad84a3e19cd87a64998350c2b94e9e08e44270faef33400f81
SIZE (Markdown-2.6.11.tar.gz) = 274132
TIMESTAMP = 1652122699
SHA256 (Markdown-3.3.7.tar.gz) = cbb516f16218e643d8e0a95b309f77eb118cb138d39a4f27851e6a63581db874
SIZE (Markdown-3.3.7.tar.gz) = 324130

View File

@@ -1,13 +1,16 @@
This is a Python implementation of John Gruber's Markdown. It is almost
completely compliant with the reference implementation, though there are a
few very minor differences.
Python-Markdown is a Python implementation of John Gruber's Markdown. It is
almost completely compliant with the reference implementation, though there are
a few known issues.
Features:
* International Input
* Extensions
* Output Formats
* "Safe Modes"
* Command Line Interface
WWW: https://pythonhosted.org/Markdown/
In addition to the basic markdown syntax, Python-Markdown supports the following
features:
- International Input: Python-Markdown will accept input in any language
supported by Unicode including bi-directional text. In fact the test suite
includes documents written in Russian and Arabic.
- Extensions: Various extensions are provided (including extra) to change and/or
extend the base syntax. Additionally, a public Extension API is available to
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, a command line
script is available for your convenience.