| 3 | 1 local Luan = require "luan:Luan.luan" | 
|  | 2 local error = Luan.error | 
|  | 3 local Io = require "luan:Io.luan" | 
|  | 4 local Http = require "luan:http/Http.luan" | 
|  | 5 local Shared = require "site:/lib/Shared.luan" | 
|  | 6 local head = Shared.head or error() | 
|  | 7 local needed_header = Shared.needed_header or error() | 
|  | 8 | 
|  | 9 | 
|  | 10 return function() | 
|  | 11 	Io.stdout = Http.response.text_writer() | 
|  | 12 %> | 
|  | 13 <!doctype html> | 
|  | 14 <html> | 
|  | 15 	<head> | 
|  | 16 <%		head() %> | 
| 22 | 17 		<title>Reactionary Software - WYSIWYG Web Editor</title> | 
| 15 | 18 	</head> | 
| 3 | 19 	<body> | 
|  | 20 <%		needed_header() %> | 
|  | 21 		<div content> | 
| 22 | 22 			<h1>WYSIWYG Web Editor</h1> | 
| 3 | 23 | 
| 30 | 24 			<p>I would like a WYSIWYG web editor for <a href="freedit.html">FreedIt</a>.  I have looked at the numerous modern options and of course they are all horrible.  The best I could find was <a href="https://www.tiny.cloud/">TinyMCE</a> and I spent about 2 weeks trying to make this bloated pig work, but I gave up.  Writing a WYSIWYG web editor is a nice stand-alone Javascript project.</p> | 
| 3 | 25 		</div> | 
|  | 26 	</body> | 
|  | 27 </html> | 
|  | 28 <% | 
|  | 29 end |