[NEW] textproc/py-mistune: Fastest markdown parser in pure Python

The fastest markdown parser in pure Python, inspired by marked.

Features:

  * Pure Python. Tested in Python 2.6+, Python 3.3+ and PyPy.
  * Very Fast. It is the fastest in all pure Python markdown parsers.
  * More Features. Table, footnotes, autolink, fenced code etc.

WWW: https://github.com/lepture/mistune
This commit is contained in:
Kubilay Kocak 2015-02-13 11:33:45 +00:00
parent 97414f7b68
commit c457b1ffbf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=378920
4 changed files with 36 additions and 0 deletions

View File

@ -1191,6 +1191,7 @@
SUBDIR += py-mako
SUBDIR += py-markdown
SUBDIR += py-markdown2
SUBDIR += py-mistune
SUBDIR += py-openpyxl
SUBDIR += py-openpyxl1
SUBDIR += py-paragrep

View File

@ -0,0 +1,24 @@
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
# $FreeBSD$
PORTNAME= mistune
PORTVERSION= 0.5
CATEGORIES= textproc python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Fastest markdown parser in pure Python
LICENSE= BSD3CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
USES= python
USE_PYTHON= autoplist distutils
regression-test: build
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
.include <bsd.port.mk>

View File

@ -0,0 +1,2 @@
SHA256 (mistune-0.5.tar.gz) = d53d868cfd10cf757160e88adb5760fce95f7026a243f15a02b7c604238e5869
SIZE (mistune-0.5.tar.gz) = 184883

View File

@ -0,0 +1,9 @@
The fastest markdown parser in pure Python, inspired by marked.
Features:
* Pure Python. Tested in Python 2.6+, Python 3.3+ and PyPy.
* Very Fast. It is the fastest in all pure Python markdown parsers.
* More Features. Table, footnotes, autolink, fenced code etc.
WWW: https://github.com/lepture/mistune