added the label to mdparse.reflow, added a README

This commit is contained in:
Izaya 2018-06-17 15:24:54 +10:00
parent 544af1841f
commit 3a95657d99
2 changed files with 9 additions and 1 deletions

8
README.md Normal file
View File

@ -0,0 +1,8 @@
# mdbrowser
A markdown FRequest browser for OpenComputers.
## mdparse
mdparse is the Markdown parsing library used for mdbrowser. It works under standard Lua as well as OpenComputers.
- `mdparse.parse(text:string): - table` Parses *text* into a table of tables. Each table should contain a .contents string, and if it is a link, then an .address string.
- `mdparse.reflow(text:string, linewidth:number): table, table` - Returns a table of formatted lines, and a table of links, as `{x, y, label, address}`.

View File

@ -57,7 +57,7 @@ function md.reflow(text,len)
if lines[#lines]:len()+v[1]:len()+2 > len then
lines[#lines+1] = ""
end
links[#links+1] = {#lines, lines[#lines]:len()+1, v[2]}
links[#links+1] = {#lines, lines[#lines]:len()+1, v[1], v[2]}
lines[#lines] = lines[#lines] .. "<"..v[1].."> "
elseif v[1] == "\n\n" then
lines[#lines+1] = ""