tangled
alpha
login
or
join now
ansxor.ca
/
markup2
0
fork
atom
this repo has no description
0
fork
atom
overview
issues
1
pulls
pipelines
json in
12Me21
3 years ago
78e4fca9
e13264e2
+9
-1
1 changed file
expand all
collapse all
unified
split
index.html
+9
-1
index.html
···
48
48
border: 3px solid black;
49
49
padding: 2px;
50
50
overflow-y: auto;
51
51
+
user-select: contain;
51
52
}
52
53
#\$inputs {
53
54
flex-wrap: wrap;
···
73
74
<option> 12y2
74
75
<option> 12y
75
76
<option> bbcode
76
76
-
<option value=plaintext> plain
77
77
+
<option> plaintext
78
78
+
<option> json
77
79
</select>
78
80
<span class='fill'></span>
79
81
<select id=$display value=render>
···
105
107
</main>
106
108
107
109
<script>
110
110
+
Markup.langs.include({
111
111
+
langs: {
112
112
+
json: text=>JSON.parse(text)
113
113
+
}
114
114
+
})
115
115
+
108
116
function show_time(elem, ms) {
109
117
elem.dateTime = (ms/1000).toFixed(4)+' s'
110
118
elem.textContent = ms.toFixed(1)