Changes since 1.4.0: Added HTML_SMARTYPANTS_QUOTES_NBSP, which allows having nonbreakable spaces inside « French guillemets » (Issue #378) Added EXTENSION_JOIN_LINES, which joins newline-separated lines into a single paragraph. Useful for Chinese text. Implemented support for CDATA section (Issue #165) Fixed links with parentheses (Issue #116) Fixed fenced code blocks inside lists (Issue #228) Fixed regression, panic in reference links (Issues #172 and #173) Fixed adjacent list merging (Issue #235) Fixed definition lists that contain other lists (Issue #263) Fixed fenced code pre-processing (Issue #279) Fixed panic with recursive footnotes (Issue #241) Removed rel="footnote", which is no longer valid.
20 lines
610 B
Makefile
20 lines
610 B
Makefile
# $NetBSD: Makefile,v 1.6 2018/06/17 02:25:38 minskim Exp $
|
|
|
|
DISTNAME= blackfriday-1.5.1
|
|
PKGNAME= go-${DISTNAME}
|
|
MASTER_SITES= ${MASTER_SITE_GITHUB:=russross/}
|
|
CATEGORIES= devel
|
|
GITHUB_TAG= v${PKGVERSION_NOREV}
|
|
GITHUB_PROJECT= ${PKGBASE:S/^go-//}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/russross/blackfriday
|
|
COMMENT= Blackfriday: a markdown processor for Go
|
|
LICENSE= 2-clause-bsd
|
|
|
|
GO_DIST_BASE= ${DISTNAME}
|
|
GO_SRCPATH= github.com/russross/blackfriday
|
|
|
|
.include "../../devel/go-sanitized_anchor_name/buildlink3.mk"
|
|
.include "../../lang/go/go-package.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|