mirror of
https://github.com/mpeterv/markdown.git
synced 2025-01-14 05:04:19 +00:00
0.33 release
This commit is contained in:
parent
77ebc53344
commit
8c09109924
1
LICENSE
1
LICENSE
@ -1,4 +1,5 @@
|
||||
Copyright (c) 2008 Niklas Frykholm
|
||||
Copyright (c) 2015 Peter Melnichenko
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
12
README.md
12
README.md
@ -5,7 +5,7 @@
|
||||
|
||||
This is an implementation of the popular text markup language Markdown in pure Lua.
|
||||
Markdown can convert documents written in a simple and easy to read text format
|
||||
to well-formatted HTML. For a more thourough description of Markdown and the Markdown
|
||||
to well-formatted HTML. For a more thorough description of Markdown and the Markdown
|
||||
syntax, see http://daringfireball.net/projects/markdown/.
|
||||
|
||||
The original Markdown source is written in Perl and makes heavy use of advanced
|
||||
@ -41,4 +41,14 @@ lua markdown.lua -h
|
||||
|
||||
For a description of the command-line options.
|
||||
|
||||
## Installation
|
||||
|
||||
Simply copy `markdown.lua` into your directory for Lua libraries. Alternatively,
|
||||
use [LuaRocks](https://luarocks.org/) and run `[sudo] luarocks install markdown`.
|
||||
|
||||
## Miscellaneous
|
||||
|
||||
`markdown.lua` uses the same license as Lua, the MIT license.
|
||||
|
||||
An alternative Markdown implementation is [lua-discount](http://asbradbury.org/projects/lua-discount/).
|
||||
It is faster than `markdown.lua`, at the cost of being written in C.
|
||||
|
@ -10,11 +10,12 @@ description = {
|
||||
homepage = "https://github.com/mpeterv/markdown"
|
||||
}
|
||||
dependencies = {
|
||||
"lua >= 5.1"
|
||||
"lua >= 5.1, < 5.4"
|
||||
}
|
||||
build = {
|
||||
type = "builtin",
|
||||
modules = {
|
||||
markdown = "markdown.lua"
|
||||
}
|
||||
},
|
||||
copy_directories = {}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user