Welcome to mirror list, hosted at ThFree Co, Russian Federation.

init.lua - github.com/torch/dok.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d235e9a099e68a7f8d00a2e65e8a52216de7947 (plain)
1
2
3
4
5
6
7
8
9
10
dok = {}

require 'dok.inline'

local ok,sd = pcall(require, 'sundown')
if ok then
    dok.markdown2html = sd.render
else
    dok.markdown2html = function() return '<p> Error: Sundown could not be loaded </p>' end
end