-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.html
More file actions
38 lines (36 loc) · 1.15 KB
/
homepage.html
File metadata and controls
38 lines (36 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<script src="src/converter.js"></script>
</head>
<style>
.flex-container {
display: flex;
}
</style>
<body>
<div class="flex-container">
<div>
<form>
<p><label for="textInput">Put the text to convert in below</label></p>
<textarea id="textInput" name="textInput" rows="40" cols="80" placeholder="put your text here"></textarea>
<br>
<input type="button" value="Convert" onclick="startConversion()">
</form>
</div>
<div>
<p><h1>Syntax</h1></p>
<div id = "syntax-guide">
<h3>Footnotes:</h3>
<h4>Opening footnotes:</h4>
<p>Use square brackets around the footnote name, like so: [1]</p>
<h4>Break:</h4>
<p>Include <b>"[TEXTBREAK]"</b> between your main body of work and the footnotes section. The code will not work properly otherwise.</p>
<h4>Footnotes Text:</h4>
<p>For the text of the footnotes, surround each entire footnote by [], and also include [a] at the start inside it, where 'a' is the name of the footnote in the main text that links to this one.</p>
<p>Example: [[1] This is a footnote.]</p>
</div>
</div>
</div>
</body>
</html>