Skip to content

smasher164/mexdown

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mexdown

Documentation Build Status Blog post

mexdown is a lightweight integrating markup language. It offers a syntax similar to markdown's, but its distinguishing feature is in integrating commands to generate a document.

These commands are processed through directives. Simply append a command to a block of raw text, like so:

```dot -Tsvg
digraph g{
  rankdir=LR;
  "A" -> "B" -> "C"
  "B" -> "D"
}
```

dot is a command installed with Graphviz that reads a graph's description into standard input, and writes its SVG representation to standard output. This SVG can be embedded into an HTML document, so the following mexdown source file

# Title About Graphs

The following graph illustrates my point:
```dot -Tsvg
digraph g{
  rankdir=LR;
  "A" -> "B" -> "C"
  "B" -> "D"
}
```

when run through mexdown's html backend either via the command line,

$ mexdown html graphs.xd

or programmatically with Go,

file := parser.MustParse(src)
out, err := html.Gen(file).Output()

produces the following HTML document

A graph embedded in an HTML document

Directives enable a powerful way to control document generation, without building in new language features into markdown itself. As long as the command reads from STDIN and writes to STDOUT, you can

  • Embed mathematical equations.
  • Write literate programs.
  • Generate hyperlinked source-code documentation.
  • Create a table of contents.
  • Embed interactive widgets based off descriptions.
  • Use it in other creative ways!

The language itself is backend-independent, and the grammar was written with this in mind. For example, the grammar doesn't dictate the formatting of list items, the escaping of raw text, or the command language used for the directives.

Supported Backends

Currently, the only implemented backend is HTML. However, the next candidates are

  • PDF
  • Postscript
  • Latex
  • Google Docs/Slides
  • Pandoc

Anyone can implement their own backend, since it only needs the AST, as defined in akhil.cc/mexdown/ast.

Contributing

Please file issues on Github's issue tracker. There is still a lot of work that needs to be done before creating a release. Thank you for taking the time to contribute!

About

A lightweight integrating markup language

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages