mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 04:17:25 +00:00
af4bce0de3
Changes: =========== - The specification expands set of Unicode characters seen by Markdown parser as a punctuation. Namely all Unicode general categories P (punctuation) and S (symbols) are now seen as such. - The definition of HTML comment has been changed so that '<!-->' and '<!--->' are also recognized as HTML comments. - HTML tags recognized as HTML block starting condition of type 4 has been updated, namely a tag '<source>' has been removed, whereas '<search>' added. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
18 lines
400 B
BlitzBasic
18 lines
400 B
BlitzBasic
SUMMARY = "Markdown for C"
|
|
DESCRIPTION = "MD4C is Markdown parser implementation in C."
|
|
HOMEPAGE = "http://github.com/mity/md4c"
|
|
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.md;md5=383f39920f391605af6e8e46e60e2378"
|
|
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/mity/md4c.git;protocol=https;branch=master \
|
|
"
|
|
|
|
SRCREV = "729e6b8b320caa96328968ab27d7db2235e4fb47"
|
|
|
|
inherit cmake
|