summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rwxr-xr-xjs/stmd.js2
-rw-r--r--man/man1/stmd.12
-rw-r--r--man/stmd.1.md4
-rw-r--r--narrative.md4
-rw-r--r--spec.txt2
-rw-r--r--src/main.c2
7 files changed, 10 insertions, 10 deletions
diff --git a/README.md b/README.md
index 889cc4e..f231f93 100644
--- a/README.md
+++ b/README.md
@@ -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
diff --git a/js/stmd.js b/js/stmd.js
index 16baa59..e6c8bdf 100755
--- a/js/stmd.js
+++ b/js/stmd.js
@@ -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
diff --git a/spec.txt b/spec.txt
index 91950da..7542958 100644
--- a/spec.txt
+++ b/spec.txt
@@ -1,5 +1,5 @@
---
-title: Standard Markdown Spec
+title: CommonMark Spec
author:
- John MacFarlane
version: 1
diff --git a/src/main.c b/src/main.c
index fa334b3..f0ecb82 100644
--- a/src/main.c
+++ b/src/main.c
@@ -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)) {