diff options
author | Pablo RodrÃguez <ousia@users.noreply.github.com> | 2014-09-06 11:28:25 +0200 |
---|---|---|
committer | Pablo RodrÃguez <ousia@users.noreply.github.com> | 2014-09-06 11:28:25 +0200 |
commit | 777b453920ea812ac1b6cd953cc0fc5691e1326a (patch) | |
tree | 82a35530bc8d1a5611cc620afde9666139d503f2 | |
parent | d095c3dce74bc558c2fb580a0fda511ba42bac42 (diff) |
replace Standard Markdown with CommonMark
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | js/stmd.js | 2 | ||||
-rw-r--r-- | man/man1/stmd.1 | 2 | ||||
-rw-r--r-- | man/stmd.1.md | 4 | ||||
-rw-r--r-- | narrative.md | 4 | ||||
-rw-r--r-- | spec.txt | 2 | ||||
-rw-r--r-- | src/main.c | 2 |
7 files changed, 10 insertions, 10 deletions
@@ -1,7 +1,7 @@ -Standard markdown +CommonMark ================= -Standard markdown is a [specification of markdown syntax][the spec], +CommonMark is a [specification of markdown syntax][the spec], together with BSD3-licensed implementations (`stmd`) in C and javascript. The implementations @@ -1,4 +1,4 @@ -// stmd.js - "standard markdown" in javascript +// stmd.js - CommomMark in javascript // Copyright (C) 2014 John MacFarlane // License: BSD3. diff --git a/man/man1/stmd.1 b/man/man1/stmd.1 index 913d5a7..6bfdd80 100644 --- a/man/man1/stmd.1 +++ b/man/man1/stmd.1 @@ -10,7 +10,7 @@ stmd [\f[I]options\f[]] [file*] \f[C]stmd\f[] acts as a pipe, reading from stdin or from the specified files and writing to stdout. It converts markdown formatted plain text to HTML, using the conventions -described in the standard markdown spec. +described in the CommonMark spec. .SH OPTIONS .TP .B \f[C]\-\-ast\f[] diff --git a/man/stmd.1.md b/man/stmd.1.md index 6e38afc..3947a79 100644 --- a/man/stmd.1.md +++ b/man/stmd.1.md @@ -17,8 +17,8 @@ stmd [*options*] [file\*] `stmd` acts as a pipe, reading from stdin or from the specified files and writing to stdout. It converts markdown formatted plain -text to HTML, using the conventions described in the standard -markdown spec. +text to HTML, using the conventions described in the CommonMark +spec. # OPTIONS diff --git a/narrative.md b/narrative.md index 12bf780..315c47b 100644 --- a/narrative.md +++ b/narrative.md @@ -1,8 +1,8 @@ --- -title: Standard markdown +title: CommonMark ... -Standard markdown is a [specification of markdown +CommonMark is a [specification of markdown syntax](http://jgm.github.io/stmd/spec.html), together with BSD3-licensed implementations (`stmd`) in C and javascript. The source for the spec and the two implementations can be found in [this @@ -1,5 +1,5 @@ --- -title: Standard Markdown Spec +title: CommonMark Spec author: - John MacFarlane version: 1 @@ -22,7 +22,7 @@ int main(int argc, char *argv[]) { for (i=1; i < argc; i++) { if (strcmp(argv[i], "--version") == 0) { printf("stmd %s", VERSION); - printf(" - standard markdown converter (c) 2014 John MacFarlane\n"); + printf(" - CommonMark converter (c) 2014 John MacFarlane\n"); exit(0); } else if ((strcmp(argv[i], "--help") == 0) || (strcmp(argv[i], "-h") == 0)) { |