diff options
-rw-r--r-- | LICENSE | 4 | ||||
-rw-r--r-- | README.md | 22 |
2 files changed, 20 insertions, 6 deletions
@@ -1,4 +1,6 @@ -The CommonMark spec (spec.txt) and DTD (CommonMark.dtd) are +The CommonMark-RDF spec (spec.txt) and DTD (CommonMark.dtd) are + +Copyright 2020 Jonas Smedegaard <dr@jones.dk> Copyright (C) 2014-16 John MacFarlane @@ -1,7 +1,9 @@ -CommonMark -========== +CommonMark-RDF +============== -CommonMark is a rationalized version of Markdown syntax, +CommonMark-RDF is a rationalized version of Markdown syntax, +extended to support authoring semantic hints and produce html+RDFa. +<!-- with a [spec][the spec] and BSD-licensed reference implementations in C and JavaScript. @@ -10,11 +12,13 @@ implementations in C and JavaScript. [the spec]: http://spec.commonmark.org/ For more details, see <http://commonmark.org>. +--> This repository contains the spec itself, along with tools for running tests against the spec, and for creating HTML and PDF versions of the spec. +<!-- The reference implementations live in separate repositories: - <https://github.com/commonmark/cmark> (C) @@ -23,6 +27,7 @@ The reference implementations live in separate repositories: There is a list of third-party libraries in a dozen different languages [here](https://github.com/commonmark/CommonMark/wiki/List-of-CommonMark-Implementations). +--> Running tests against the spec ------------------------------ @@ -164,10 +169,16 @@ the canonical syntax description: - Fenced code blocks are supported, delimited by either backticks (```` ``` ````) or tildes (` ~~~ `). +- Semantic annotations are supported, + delimited by curly braces (` { ` ` } `). + Contributing ------------ -There is a [forum for discussing +Regarding semantic annotations, please join the Matrix chatroom +at <https://matrix.to/#/#semantic-markdown:matrix.virtual-assembly.org>. + +Regarding CommonMark generally, there is a [forum for discussing CommonMark](http://talk.commonmark.org); you should use it instead of github issues for questions and possibly open-ended discussions. Use the [github issue tracker](http://github.com/commonmark/CommonMark/issues) @@ -176,7 +187,8 @@ only for simple, clear, actionable issues. Authors ------- -The spec was written by John MacFarlane, drawing on +The spec was written by John MacFarlane and Jonas Smedegaard. +as a slight fork of CommonMark spec written by John MacFarlane, drawing on - his experience writing and maintaining Markdown implementations in several languages, including the first Markdown parser not based on regular |