51
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
|
3 local Parsers = require "luan:Parsers.luan"
|
|
4 local json_string = Parsers.json_string or error()
|
|
5 local Io = require "luan:Io.luan"
|
|
6 local output_of = Io.output_of or error()
|
|
7 local Http = require "luan:http/Http.luan"
|
|
8 local Bbcode = require "site:/bbcode/Bbcode.luan"
|
52
|
9 local preprocess = Bbcode.preprocess or error()
|
51
|
10 local bbcode_to_html = Bbcode.to_html or error()
|
|
11
|
|
12
|
|
13 return function()
|
|
14 local text = Http.request.parameters.text or error()
|
52
|
15 local convert_urls = Http.request.parameters.convert_urls or error()
|
|
16 if convert_urls == "true" then
|
|
17 text = preprocess(text)
|
|
18 end
|
51
|
19 local html = output_of(function() bbcode_to_html(text) end)
|
|
20 Io.stdout = Http.response.text_writer()
|
|
21 %>
|
52
|
22 context.preview( <%= json_string(text) %>, <%= json_string(html) %> );
|
51
|
23 <%
|
|
24 end
|