summaryrefslogtreecommitdiff
path: root/markdown.st
diff options
context:
space:
mode:
Diffstat (limited to 'markdown.st')
-rw-r--r--markdown.st34
1 files changed, 0 insertions, 34 deletions
diff --git a/markdown.st b/markdown.st
deleted file mode 100644
index ee53004..0000000
--- a/markdown.st
+++ /dev/null
@@ -1,34 +0,0 @@
-group formatter;
-
-copyrightLine(author) ::= <<
-Copyright (c) <author.year> <author.name><if(author.email)> \\\<<author.email>\\\><endif>
->>
-
-canon(m4header, name, synopsis, description, authors, license, body) ::= <<
-% <name>
-% <authors:{e|<e.name>}; separator=", ">
-%
-
-SYNOPSIS
-========
-
- <synopsis; separator="\n">
-
-DESCRIPTION
-===========
-
- <description:{e| <e; separator="\n">}; separator="\n\n">
-
-SOURCE CODE
-===========
-
-Download [ac_check_class.m4](http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=blob_plain;f=<name>.m4)
-or browse the [revision history](http://git.savannah.gnu.org/gitweb/?p=autoconf-archive.git;a=history;f=<name>.m4).
-
-LICENSE
-=======
-
-<authors:copyrightLine(); separator=" \n">
-
-<license:{e| <e; separator="\n">}; separator="\n\n">
->>