2013-09-19 14:25:00 +00:00
|
|
|
|
Hoedown
|
2011-04-15 08:36:46 +00:00
|
|
|
|
=======
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is a revived fork of [Sundown](https://github.com/vmg/sundown),
|
|
|
|
|
the Markdown parser based on the original code of the
|
|
|
|
|
[Upskirt library](http://fossil.instinctive.eu/libupskirt/index)
|
|
|
|
|
by Natacha Porté.
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
Features
|
|
|
|
|
--------
|
2011-04-15 08:58:19 +00:00
|
|
|
|
|
2011-07-19 08:03:14 +00:00
|
|
|
|
* **Fully standards compliant**
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` passes out of the box the official Markdown v1.0.0 and v1.0.3
|
2011-04-15 08:36:46 +00:00
|
|
|
|
test suites, and has been extensively tested with additional corner cases
|
|
|
|
|
to make sure its output is as sane as possible at all times.
|
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
* **Massive extension support**
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` has optional support for several (unofficial) Markdown extensions,
|
2011-04-15 08:36:46 +00:00
|
|
|
|
such as non-strict emphasis, fenced code blocks, tables, autolinks,
|
|
|
|
|
strikethrough and more.
|
|
|
|
|
|
2011-09-02 21:28:20 +00:00
|
|
|
|
* **UTF-8 aware**
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is fully UTF-8 aware, both when parsing the source document and when
|
2011-09-02 21:28:20 +00:00
|
|
|
|
generating the resulting (X)HTML code.
|
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
* **Tested & Ready to be used on production**
|
2011-09-02 21:07:02 +00:00
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
`Sundown` has been extensively security audited, and includes protection against
|
2011-04-15 08:36:46 +00:00
|
|
|
|
all possible DOS attacks (stack overflows, out of memory situations, malformed
|
|
|
|
|
Markdown syntax...) and against client attacks through malicious embedded HTML.
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
We've worked very hard to make `Hoedown` never crash or run out of memory
|
|
|
|
|
under *any* input. `Hoedown` renders all the Markdown content in GitHub and so
|
2011-09-02 21:07:02 +00:00
|
|
|
|
far hasn't crashed a single time.
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
* **Customizable renderers**
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is not stuck with XHTML output: the Markdown parser of the library
|
2011-04-15 08:36:46 +00:00
|
|
|
|
is decoupled from the renderer, so it's trivial to extend the library with
|
2011-07-18 21:27:33 +00:00
|
|
|
|
custom renderers. A fully functional (X)HTML renderer is included.
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
* **Optimized for speed**
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is written in C, with a special emphasis on performance. When wrapped
|
2011-04-15 08:36:46 +00:00
|
|
|
|
on a dynamic language such as Python or Ruby, it has shown to be up to 40
|
|
|
|
|
times faster than other native alternatives.
|
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
* **Zero-dependency**
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is a zero-dependency library composed of 3 `.c` files and their headers.
|
2011-04-15 08:36:46 +00:00
|
|
|
|
No dependencies, no bullshit. Only standard C99 that builds everywhere.
|
|
|
|
|
|
2011-05-05 14:46:49 +00:00
|
|
|
|
Credits
|
|
|
|
|
-------
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is a fork of `Sundown`.
|
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
`Sundown` is based on the original Upskirt parser by Natacha Porté, with many additions
|
2012-08-01 23:27:07 +00:00
|
|
|
|
by Vicent Marti (@vmg) and contributions from the following authors:
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2011-07-18 21:27:33 +00:00
|
|
|
|
Ben Noordhuis, Bruno Michel, Joseph Koshy, Krzysztof Kowalczyk, Samuel Bronson,
|
|
|
|
|
Shuhei Tanuma
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2011-05-11 17:11:55 +00:00
|
|
|
|
Bindings
|
|
|
|
|
--------
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is available from other programming languages thanks to these bindings developed
|
2011-06-05 18:52:25 +00:00
|
|
|
|
by our awesome contributors.
|
2011-05-11 17:11:55 +00:00
|
|
|
|
|
2012-08-01 23:27:07 +00:00
|
|
|
|
- [Redcarpet](https://github.com/vmg/redcarpet) (Ruby)
|
2011-05-11 17:11:55 +00:00
|
|
|
|
- [RobotSkirt](https://github.com/benmills/robotskirt) (Node.js)
|
2011-07-05 01:22:47 +00:00
|
|
|
|
- [Misaka](https://github.com/FSX/misaka) (Python)
|
2011-07-29 16:57:10 +00:00
|
|
|
|
- [ffi-sundown](https://github.com/postmodern/ffi-sundown) (Ruby FFI)
|
2012-04-02 22:01:03 +00:00
|
|
|
|
- [Sundown HS](https://github.com/bitonic/sundown) (Haskell)
|
2011-05-24 16:10:19 +00:00
|
|
|
|
- [Goskirt](https://github.com/madari/goskirt) (Go)
|
|
|
|
|
- [Upskirt.go](https://github.com/buu700/upskirt.go) (Go)
|
2011-07-19 09:12:50 +00:00
|
|
|
|
- [MoonShine](https://github.com/brandonc/moonshine) (.NET)
|
2011-07-29 16:57:10 +00:00
|
|
|
|
- [PHP-Sundown](https://github.com/chobie/php-sundown) (PHP)
|
|
|
|
|
- [Sundown.net](https://github.com/txdv/sundown.net) (.NET)
|
2011-05-11 17:11:55 +00:00
|
|
|
|
|
2011-04-15 08:36:46 +00:00
|
|
|
|
Help us
|
|
|
|
|
-------
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
`Hoedown` is all about security. If you find a (potential) security vulnerability in the
|
2011-06-05 18:52:25 +00:00
|
|
|
|
library, or a way to make it crash through malicious input, please report it to us,
|
|
|
|
|
either directly via email or by opening an Issue on GitHub, and help make the web safer
|
|
|
|
|
for everybody.
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2011-09-02 21:28:20 +00:00
|
|
|
|
Unicode character handling
|
|
|
|
|
--------------------------
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
Given that the Markdown spec makes no provision for Unicode character handling, `Hoedown`
|
2011-09-02 21:28:20 +00:00
|
|
|
|
takes a conservative approach towards deciding which extended characters trigger Markdown
|
|
|
|
|
features:
|
|
|
|
|
|
|
|
|
|
* Punctuation characters outside of the U+007F codepoint are not handled as punctuation.
|
|
|
|
|
They are considered as normal, in-word characters for word-boundary checks.
|
|
|
|
|
|
|
|
|
|
* Whitespace characters outside of the U+007F codepoint are not considered as
|
|
|
|
|
whitespace. They are considered as normal, in-word characters for word-boundary checks.
|
|
|
|
|
|
2011-04-15 08:36:46 +00:00
|
|
|
|
Install
|
|
|
|
|
-------
|
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
There is nothing to install. `Hoedown` is composed of 3 `.c` files (`markdown.c`,
|
2011-06-05 18:52:25 +00:00
|
|
|
|
`buffer.c` and `array.c`), so just throw them in your project. Zero-dependency means
|
2011-07-18 21:27:33 +00:00
|
|
|
|
zero-dependency. You might want to include `render/html.c` if you want to use the
|
2011-06-05 18:52:25 +00:00
|
|
|
|
included XHTML renderer, or write your own renderer. Either way, it's all fun and joy.
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
2013-09-19 14:25:00 +00:00
|
|
|
|
If you are hardcore, you can use the included `Makefile` to build `Hoedown` into a dynamic
|
2011-07-18 21:27:33 +00:00
|
|
|
|
library, or to build the sample `sundown` executable, which is just a commandline
|
2011-06-05 18:54:22 +00:00
|
|
|
|
Markdown to XHTML parser. (If gcc gives you grief about `-fPIC`, e.g. with MinGW, try
|
|
|
|
|
`make MFLAGS=` instead of just `make`.)
|
2011-04-15 08:36:46 +00:00
|
|
|
|
|
|
|
|
|
License
|
|
|
|
|
-------
|
|
|
|
|
|
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
|
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
|
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2011-06-05 18:52:25 +00:00
|
|
|
|
|
|
|
|
|
<!-- Local Variables: -->
|
|
|
|
|
<!-- fill-column: 89 -->
|
|
|
|
|
<!-- End: -->
|