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.
|
|
|
|
|
2011-07-05 18:19:49 +02:00
|
|
|
require 'pl'
|
2011-07-11 15:40:44 +02:00
|
|
|
local doc = require 'ldoc.doc'
|
2011-07-05 16:30:49 +02:00
|
|
|
local utils = require 'pl.utils'
|
2011-07-12 14:14:55 +02:00
|
|
|
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 = {}
|
|
|
|
|
2012-03-04 17:46:02 +01:00
|
|
|
local backtick_references
|
|
|
|
|
2011-09-17 17:57:22 +02:00
|
|
|
-- 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)
|
2011-09-17 17:57:22 +02:00
|
|
|
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
|
2012-03-14 10:38:54 +01:00
|
|
|
if not plain and label then -- a nastiness with markdown.lua and underscores
|
2011-09-17 17:57:22 +02:00
|
|
|
label = label:gsub('_','\\_')
|
|
|
|
end
|
2011-12-06 18:20:17 +01:00
|
|
|
local html = ldoc.href(ref) or '#'
|
|
|
|
label = label or '?que'
|
|
|
|
local res = ('<a href="%s">%s</a>'):format(html,label)
|
2011-09-17 17:57:22 +02:00
|
|
|
return res
|
|
|
|
end))
|
2012-03-04 17:46:02 +01:00
|
|
|
if backtick_references then
|
|
|
|
res = res:gsub('`([^`]+)`',function(name)
|
|
|
|
local ref,err = markup.process_reference(name)
|
|
|
|
if ref then
|
2012-03-05 14:34:16 +01:00
|
|
|
return ('<a href="%s">%s</a> '):format(ldoc.href(ref),name)
|
2012-03-04 17:46:02 +01:00
|
|
|
else
|
|
|
|
return '`'..name..'`'
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
2011-09-20 14:11:31 +02:00
|
|
|
return res
|
2011-09-17 17:57:22 +02:00
|
|
|
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.
|
2011-07-11 15:40:44 +02:00
|
|
|
function markup.add_sections(F, txt)
|
2012-03-14 10:38:54 +01:00
|
|
|
local sections, L, first = {}, 1, true
|
|
|
|
local title_pat_end, title_pat = '[^#]%s*(.+)'
|
2011-07-11 15:40:44 +02:00
|
|
|
for line in stringx.lines(txt) do
|
2012-03-14 10:38:54 +01:00
|
|
|
if first then
|
|
|
|
local level,header = line:match '^(#+)%s*(.+)'
|
|
|
|
if level then
|
|
|
|
level = level .. '#'
|
|
|
|
else
|
|
|
|
level = '##'
|
|
|
|
end
|
|
|
|
title_pat = '^'..level..title_pat_end
|
|
|
|
first = false
|
|
|
|
end
|
|
|
|
local title = line:match (title_pat)
|
2011-07-11 15:40:44 +02:00
|
|
|
if title then
|
2012-03-14 10:38:54 +01:00
|
|
|
-- Markdown does allow this pattern
|
|
|
|
title = title:gsub('%s*#+$','')
|
2011-09-17 17:57:22 +02:00
|
|
|
sections[L] = F:add_document_section(title)
|
2011-07-06 15:24:05 +02:00
|
|
|
end
|
2011-09-17 17:57:22 +02:00
|
|
|
L = L + 1
|
2011-07-11 15:40:44 +02:00
|
|
|
end
|
2011-09-17 17:57:22 +02:00
|
|
|
F.sections = sections
|
|
|
|
return txt
|
2011-07-11 15:40:44 +02:00
|
|
|
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
|
|
|
|
|
2012-03-14 10:38:54 +01:00
|
|
|
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
|
|
|
|
|
2011-09-17 17:57:22 +02:00
|
|
|
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
|
2011-09-17 17:57:22 +02:00
|
|
|
local err_item = {
|
|
|
|
warning = function (self,msg)
|
2011-09-19 14:22:18 +02:00
|
|
|
io.stderr:write(filename..':'..L..': '..msg,'\n')
|
2011-07-11 15:40:44 +02:00
|
|
|
end
|
2011-09-17 17:57:22 +02:00
|
|
|
}
|
2011-09-19 14:22:18 +02:00
|
|
|
local get = stringx.lines(txt)
|
|
|
|
local getline = function()
|
|
|
|
L = L + 1
|
|
|
|
return get()
|
|
|
|
end
|
|
|
|
local line = getline()
|
|
|
|
local indent,code,start_indent
|
2012-03-14 10:38:54 +01:00
|
|
|
local_context = nil
|
2011-09-19 14:22:18 +02:00
|
|
|
while line do
|
2012-03-14 10:38:54 +01:00
|
|
|
local name = line:match '@lookup%s+(%S+)'
|
|
|
|
if name then
|
|
|
|
local_context = name .. '.'
|
|
|
|
line = getline()
|
|
|
|
end
|
2011-09-17 17:57:22 +02:00
|
|
|
line = resolve_inline_references(ldoc, line, err_item)
|
2011-09-19 14:22:18 +02:00
|
|
|
indent, line = indent_line(line)
|
|
|
|
if indent >= 4 then -- indented code block
|
|
|
|
code = {}
|
2011-09-20 15:59:34 +02:00
|
|
|
local plain
|
2011-09-19 14:22:18 +02:00
|
|
|
while indent >= 4 or not non_blank(line) do
|
2011-09-20 15:59:34 +02:00
|
|
|
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
|
|
|
|
code = concat(code,'\n')
|
|
|
|
if code ~= '' then
|
2011-09-20 15:59:34 +02:00
|
|
|
code, err = prettify.lua(filename,code..'\n',L)
|
2011-09-19 14:22:18 +02:00
|
|
|
append(res, code)
|
|
|
|
append(res,'</pre>')
|
|
|
|
else
|
|
|
|
append(res ,code)
|
|
|
|
end
|
|
|
|
else
|
|
|
|
local section = F.sections[L]
|
|
|
|
if section then
|
|
|
|
append(res,('<a name="%s"></a>'):format(section))
|
|
|
|
end
|
|
|
|
append(res,line)
|
|
|
|
line = getline()
|
2011-09-17 17:57:22 +02:00
|
|
|
end
|
2011-07-11 15:40:44 +02:00
|
|
|
end
|
2012-03-05 14:34:16 +01:00
|
|
|
res = concat(res,'\n')
|
|
|
|
return res
|
2011-07-11 15:40:44 +02:00
|
|
|
end
|
|
|
|
|
2011-07-06 15:24:05 +02:00
|
|
|
|
2011-07-05 18:19:49 +02:00
|
|
|
function markup.create (ldoc, format)
|
2011-07-11 15:40:44 +02:00
|
|
|
local processor
|
|
|
|
markup.plain = true
|
2012-03-04 17:46:02 +01:00
|
|
|
backtick_references = ldoc.backtick_references
|
2012-03-14 10:38:54 +01:00
|
|
|
global_context = ldoc.package and ldoc.package .. '.'
|
|
|
|
|
2011-07-11 15:40:44 +02:00
|
|
|
markup.process_reference = function(name)
|
|
|
|
local mod = ldoc.single or ldoc.module
|
2012-03-14 10:38:54 +01:00
|
|
|
local ref,err = mod:process_see_reference(name, ldoc.modules)
|
|
|
|
if ref then return ref end
|
|
|
|
if global_context then
|
|
|
|
local qname = global_context .. name
|
|
|
|
ref = mod:process_see_reference(qname, ldoc.modules)
|
|
|
|
if ref then return ref end
|
|
|
|
end
|
|
|
|
if local_context then
|
|
|
|
local qname = local_context .. name
|
|
|
|
ref = mod:process_see_reference(qname, ldoc.modules)
|
|
|
|
if ref then return ref end
|
|
|
|
end
|
|
|
|
-- note that we'll return the original error!
|
|
|
|
return ref,err
|
2011-07-11 15:40:44 +02:00
|
|
|
end
|
2012-03-14 10:38:54 +01:00
|
|
|
|
2011-07-11 15:40:44 +02:00
|
|
|
markup.href = function(ref)
|
|
|
|
return ldoc.href(ref)
|
|
|
|
end
|
2011-07-12 14:14:55 +02:00
|
|
|
|
2011-07-06 15:24:05 +02:00
|
|
|
if format == 'plain' then
|
2011-09-17 17:57:22 +02:00
|
|
|
processor = function(txt, item)
|
2011-07-06 15:24:05 +02:00
|
|
|
if txt == nil then return '' end
|
2011-09-19 14:22:18 +02:00
|
|
|
return resolve_inline_references(ldoc, txt, item, true)
|
2011-07-06 15:24:05 +02:00
|
|
|
end
|
|
|
|
else
|
|
|
|
local ok,formatter = pcall(require,format)
|
2011-12-12 14:48:35 +01:00
|
|
|
if not ok then
|
|
|
|
if format == 'discount' then
|
|
|
|
print('format: discount not found, using markdown')
|
|
|
|
ok,formatter = pcall(require,'markdown')
|
|
|
|
end
|
2011-12-13 13:16:03 +01:00
|
|
|
if not ok then
|
2011-12-12 14:48:35 +01:00
|
|
|
quit("cannot load formatter: "..format)
|
|
|
|
end
|
|
|
|
end
|
2012-03-04 17:46:02 +01:00
|
|
|
if backtick_references == nil then
|
|
|
|
backtick_references = true
|
|
|
|
end
|
2011-07-11 15:40:44 +02:00
|
|
|
markup.plain = false
|
2011-09-17 17:57:22 +02:00
|
|
|
processor = function (txt,item)
|
2011-07-06 15:24:05 +02:00
|
|
|
if txt == nil then return '' end
|
2011-09-17 17:57:22 +02:00
|
|
|
if utils.is_type(item,doc.File) then
|
|
|
|
txt = process_multiline_markdown(ldoc, txt, item)
|
|
|
|
else
|
|
|
|
txt = resolve_inline_references(ldoc, txt, item)
|
|
|
|
end
|
|
|
|
txt = formatter(txt)
|
2011-07-06 15:24:05 +02:00
|
|
|
-- We will add our own paragraph tags, if needed.
|
|
|
|
return (txt:gsub('^%s*<p>(.+)</p>%s*$','%1'))
|
2011-07-05 18:53:28 +02:00
|
|
|
end
|
2011-07-05 16:30:49 +02:00
|
|
|
end
|
2011-09-17 17:57:22 +02: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)
|
2011-07-11 15:40:44 +02:00
|
|
|
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
|
2011-07-11 15:40:44 +02:00
|
|
|
return processor
|
2011-07-05 16:30:49 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
return markup
|