LDoc2tl/ldoc/markup.lua

336 lines
9.7 KiB
Lua
Raw Normal View History

2011-07-05 16:30:49 +02:00
--------------
-- Handling markup transformation.
-- Currently just does Markdown, but this is intended to
-- be the general module for managing other formats as well.
local doc = require 'ldoc.doc'
2011-07-05 16:30:49 +02:00
local utils = require 'pl.utils'
local stringx = require 'pl.stringx'
local prettify = require 'ldoc.prettify'
local quit, concat, lstrip = utils.quit, table.concat, stringx.lstrip
2011-07-05 16:30:49 +02:00
local markup = {}
local backtick_references
-- inline <references> use same lookup as @see
2011-09-19 14:22:18 +02:00
local function resolve_inline_references (ldoc, txt, item, plain)
2011-09-20 14:11:31 +02:00
local res = (txt:gsub('@{([^}]-)}',function (name)
if name:match '^\\' then return '@{'..name:sub(2)..'}' end
local qname,label = utils.splitv(name,'%s*|')
if not qname then
qname = name
end
local ref,err = markup.process_reference(qname)
if not ref then
err = err .. ' ' .. qname
if item then item:warning(err)
else
io.stderr:write('nofile error: ',err,'\n')
end
return '???'
end
if not label then
label = ref.label
end
if not plain and label then -- a nastiness with markdown.lua and underscores
label = label:gsub('_','\\_')
end
2011-12-06 18:20:17 +01:00
local html = ldoc.href(ref) or '#'
label = label or qname
2011-12-06 18:20:17 +01:00
local res = ('<a href="%s">%s</a>'):format(html,label)
return res
end))
if backtick_references then
res = res:gsub('`([^`]+)`',function(name)
local ref,err = markup.process_reference(name)
if ref then
return ('<a href="%s">%s</a> '):format(ldoc.href(ref),name)
else
return '<code>'..name..'</code>'
end
end)
end
2011-09-20 14:11:31 +02:00
return res
end
-- for readme text, the idea here is to create module sections at ## so that
-- they can appear in the contents list as a ToC.
function markup.add_sections(F, txt)
local sections, L, first = {}, 1, true
local title_pat
for line in stringx.lines(txt) do
if first then
local level,header = line:match '^(#+)%s*(.+)'
if level then
level = level .. '#'
else
level = '##'
end
title_pat = '^'..level..'([^#]%s*.+)'
title_pat = stringx.lstrip(title_pat)
first = false
end
local title = line:match (title_pat)
if title then
-- Markdown does allow this pattern
title = title:gsub('%s*#+$','')
sections[L] = F:add_document_section(title)
end
L = L + 1
end
F.sections = sections
return txt
end
2011-09-19 14:22:18 +02:00
local function indent_line (line)
line = line:gsub('\t',' ') -- support for barbarians ;)
local indent = #line:match '^%s*'
return indent,line
end
local function non_blank (line)
return line:find '%S'
end
local global_context, local_context
-- before we pass Markdown documents to markdown/discount, we need to do three things:
-- - resolve any @{refs} and (optionally) `refs`
-- - any @lookup directives that set local context for ref lookup
2011-09-19 14:22:18 +02:00
-- - insert any section ids which were generated by add_sections above
-- - prettify any code blocks
local function process_multiline_markdown(ldoc, txt, F)
2011-09-19 14:22:18 +02:00
local res, L, append = {}, 0, table.insert
local filename = F.filename
local err_item = {
warning = function (self,msg)
2011-09-19 14:22:18 +02:00
io.stderr:write(filename..':'..L..': '..msg,'\n')
end
}
2011-09-19 14:22:18 +02:00
local get = stringx.lines(txt)
local getline = function()
L = L + 1
return get()
end
local function pretty_code (code, lang)
code = concat(code,'\n')
if code ~= '' then
local err
code, err = prettify.code(lang,filename,code..'\n',L,false)
append(res,'<pre>')
append(res, code)
append(res,'</pre>')
else
append(res,code)
end
end
local indent,start_indent
local_context = nil
local line = getline()
2011-09-19 14:22:18 +02:00
while line do
local name = line:match '^@lookup%s+(%S+)'
if name then
local_context = name .. '.'
line = getline()
end
local fence = line:match '^```(.*)'
if fence then
local plain = fence==''
line = getline()
local code = {}
while not line:match '^```' do
if not plain then
append(code, line)
else
append(res, ' '..line)
end
line = getline()
end
pretty_code (code,fence)
line = getline() -- skip fence
end
2011-09-19 14:22:18 +02:00
indent, line = indent_line(line)
if indent >= 4 then -- indented code block
local code = {}
local plain
2011-09-19 14:22:18 +02:00
while indent >= 4 or not non_blank(line) do
if not start_indent then
start_indent = indent
if line:match '^%s*@plain%s*$' then
plain = true
line = getline()
end
end
if not plain then
append(code,line:sub(start_indent))
else
append(res,line)
end
2011-09-19 14:22:18 +02:00
line = getline()
if line == nil then break end
indent, line = indent_line(line)
end
start_indent = nil
if #code > 1 then table.remove(code) end
pretty_code (code,'lua')
2011-09-19 14:22:18 +02:00
else
local section = F.sections[L]
if section then
append(res,('<a name="%s"></a>'):format(section))
end
2012-03-16 13:41:26 +01:00
line = resolve_inline_references(ldoc, line, err_item)
2011-09-19 14:22:18 +02:00
append(res,line)
line = getline()
end
end
res = concat(res,'\n')
return res
end
2012-12-28 10:00:10 +01:00
-- Handle markdown formatters
-- Try to get the one the user has asked for, but if it's not available,
-- try all the others we know about. If they don't work, fall back to text.
local function generic_formatter(format)
local ok, f = pcall(require, format)
return ok and f
end
2012-12-28 09:56:43 +01:00
local formatters =
{
markdown = function(format)
local ok, markdown = pcall(require, 'markdown')
if not ok then
print('format: using built-in markdown')
ok, markdown = pcall(require, 'ldoc.markdown')
end
return ok and markdown
end,
2012-12-28 10:00:10 +01:00
discount = generic_formatter,
lunamark = function(format)
local ok, lunamark = pcall(require, format)
if ok then
local writer = lunamark.writer.html.new()
local parse = lunamark.reader.markdown.new(writer,
{ smart = true })
return function(text) return parse(text) end
2012-12-28 09:56:43 +01:00
end
end
2012-12-28 09:56:43 +01:00
}
2012-12-28 10:00:10 +01:00
local function get_formatter(format)
local formatter = (formatters[format] or generic_formatter)(format)
if formatter then return formatter end
for name, f in pairs(formatters) do
formatter = f(name)
if formatter then
print('format: '..format..' not found, using '..name)
return formatter
end
end
end
local function text_processor(ldoc)
return function(txt,item)
if txt == nil then return '' end
-- hack to separate paragraphs with blank lines
txt = txt:gsub('\n\n','\n<p>')
2012-12-28 10:00:10 +01:00
return resolve_inline_references(ldoc, txt, item, true)
end
end
local plain_processor
2012-12-28 10:00:10 +01:00
local function markdown_processor(ldoc, formatter)
return function (txt,item,plain)
2012-12-28 10:00:10 +01:00
if txt == nil then return '' end
if plain then
if not plain_processor then
plain_processor = text_processor(ldoc)
end
return plain_processor(txt,item)
end
2012-12-28 10:00:10 +01:00
if utils.is_type(item,doc.File) then
txt = process_multiline_markdown(ldoc, txt, item)
else
txt = resolve_inline_references(ldoc, txt, item)
2012-12-28 09:56:43 +01:00
end
2012-12-28 10:00:10 +01:00
txt = formatter(txt)
-- We will add our own paragraph tags, if needed.
return (txt:gsub('^%s*<p>(.+)</p>%s*$','%1'))
2012-12-28 09:56:43 +01:00
end
2012-12-28 10:00:10 +01:00
end
local function get_processor(ldoc, format)
if format == 'plain' then return text_processor(ldoc) end
local formatter = get_formatter(format)
if formatter then
markup.plain = false
return markdown_processor(ldoc, formatter)
end
print('format: '..format..' not found, falling back to text')
return text_processor(ldoc)
end
2012-12-28 09:56:43 +01:00
function markup.create (ldoc, format, pretty)
local processor
markup.plain = true
if format == 'backtick' then
ldoc.backtick_references = true
format = 'plain'
end
backtick_references = ldoc.backtick_references
global_context = ldoc.package and ldoc.package .. '.'
prettify.set_prettifier(pretty)
markup.process_reference = function(name,istype)
if local_context == 'none.' and not name:match '%.' then
return nil,'not found'
end
local mod = ldoc.single or ldoc.module or ldoc.modules[1]
local ref,err = mod:process_see_reference(name, ldoc.modules, istype)
if ref then return ref end
if global_context then
local qname = global_context .. name
ref = mod:process_see_reference(qname, ldoc.modules, istype)
if ref then return ref end
end
if local_context then
local qname = local_context .. name
ref = mod:process_see_reference(qname, ldoc.modules, istype)
if ref then return ref end
end
-- note that we'll return the original error!
return ref,err
end
markup.href = function(ref)
return ldoc.href(ref)
end
2012-12-28 10:00:10 +01:00
processor = get_processor(ldoc, format)
if not markup.plain and backtick_references == nil then
backtick_references = true
2011-07-05 16:30:49 +02:00
end
2012-12-28 10:00:10 +01:00
markup.resolve_inline_references = function(txt, errfn)
2011-09-19 14:22:18 +02:00
return resolve_inline_references(ldoc, txt, errfn, markup.plain)
end
markup.processor = processor
2011-09-19 14:22:18 +02:00
prettify.resolve_inline_references = function(txt, errfn)
return resolve_inline_references(ldoc, txt, errfn, true)
end
return processor
2011-07-05 16:30:49 +02:00
end
return markup