Mercurial Hosting > freedit
comparison src/bbcode/preview.js.luan @ 51:78b2d6995244
add preview
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 22 Nov 2022 22:57:43 -0700 |
parents | |
children | 9f8ebc757814 |
comparison
equal
deleted
inserted
replaced
50:0d99cec5142c | 51:78b2d6995244 |
---|---|
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" | |
9 local bbcode_to_html = Bbcode.to_html or error() | |
10 | |
11 | |
12 return function() | |
13 local text = Http.request.parameters.text or error() | |
14 local html = output_of(function() bbcode_to_html(text) end) | |
15 Io.stdout = Http.response.text_writer() | |
16 %> | |
17 context.preview(<%= json_string(html) %>); | |
18 <% | |
19 end |