|
1 |
| -<!DOCTYPE html><html lang="en"> |
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
2 | 3 | <head>
|
3 | 4 | <meta charset="UTF-8" />
|
4 | 5 | <link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
|
5 |
| - <style>pre { white-space: pre-line; }</style> |
| 6 | + <style>pre { white-space: pre-line; } .center { margin: auto; }</style> |
6 | 7 | <title>MEL: Elisp HTML Templating</title>
|
7 | 8 | </head>
|
8 | 9 | <body>
|
9 | 10 | <h1>MEL: Elisp HTML Templating</h1>
|
10 | 11 | <p class="center">
|
11 |
| - <img src="./logo.png" alt="A honeycomb logo with the word 'mel' written in honey in the center." /> |
| 12 | + <img src="./logo.png" alt="A honeycomb with the word 'mel' written in honey in the center." /> |
12 | 13 | </p>
|
13 |
| - <blockquote class="center">"Short and sweet HTML."</blockquote> |
| 14 | + <q class="center">Short and sweet HTML.</q> |
14 | 15 | <h2>Usage</h2>
|
15 |
| - <p>The |
16 |
| - <code>mel</code> function accepts any number of nodes and returns an HTML string. |
17 |
| - Each node is a list of the following form: |
18 |
| - </p> |
| 16 | + <p>The <code>mel</code> function accepts any number of nodes and returns |
| 17 | + an HTML string. Each node is a list of the following form:</p> |
| 18 | + |
19 | 19 | <pre>(TAG [attribute val...] CHILDREN...)</pre>
|
20 | 20 | <h3>Tags</h3>
|
21 |
| - <p> |
22 |
| - <code>Tag</code> should be a symbol staring with the name of an HTML tag. |
23 |
| - </p> |
24 |
| - <code>(mel '(h1 "heading"))</code> |
25 |
| - <p>Returns:</p> |
26 |
| - <pre><h1>heading</h1> |
27 |
| - </pre> |
| 21 | + <p><code>TAG</code> must be a symbol staring with the name of an HTML |
| 22 | + tag.</p> |
| 23 | + |
| 24 | + <div class="example"> |
| 25 | + <code>(mel '(h1 "heading"))</code> |
| 26 | + <p>Returns:</p> |
| 27 | + <pre><h1>heading</h1></pre> |
| 28 | + </div> |
28 | 29 | <h3>Classes</h3>
|
29 |
| - <p>The |
30 |
| - <code>.</code> separator can be used in a tag symbol name to indicate a class. |
31 |
| - </p> |
32 |
| - <code>(mel '(h1.class "heading"))</code> |
33 |
| - <p>Returns:</p> |
34 |
| - <pre><h1 class="class">heading</h1> |
35 |
| - </pre> |
| 30 | + <p>The <code>.</code> separator can be used in a tag symbol name to |
| 31 | + indicate a class.</p> |
| 32 | + |
| 33 | + <div class="example"> |
| 34 | + <code>(mel '(h1.class "heading"))</code> |
| 35 | + <p>Returns:</p> |
| 36 | + <pre><h1 class="class">heading</h1></pre> |
| 37 | + </div> |
36 | 38 | <p>It may be used multiple times.</p>
|
37 |
| - <code>(mel '(h1.one.two "heading"))</code> |
38 |
| - <p>Returns:</p> |
39 |
| - <pre><h1 class="one two">heading</h1> |
40 |
| - </pre> |
41 |
| - <p>As a special case, if a tag symbol begins with a |
42 |
| - <code>.</code>, a div tag is implied. |
43 |
| - </p> |
44 |
| - <code>(mel '(\.class "content"))</code> |
45 |
| - <p>Returns:</p> |
46 |
| - <pre><div class="class">content</div> |
47 |
| - </pre> |
| 39 | + <div class="example"> |
| 40 | + <code>(mel '(h1.one.two "heading"))</code> |
| 41 | + <p>Returns:</p> |
| 42 | + <pre><h1 class="one two">heading</h1></pre> |
| 43 | + </div> |
| 44 | + <p>As a special case, if a tag symbol begins with a <code>.</code>, a |
| 45 | + div tag is implied.</p> |
| 46 | + |
| 47 | + <div class="example"> |
| 48 | + <code>(mel '(\.class "content"))</code> |
| 49 | + <p>Returns:</p> |
| 50 | + <pre><div class="class">content</div></pre> |
| 51 | + </div> |
48 | 52 | <h3>IDs</h3>
|
49 |
| - <p>A single |
50 |
| - <code>#</code> separator can be used to associate an ID with a tag. |
51 |
| - Note that the separator must be escaped with a |
52 |
| - <code>\</code> in elisp. |
53 |
| - The |
54 |
| - <code>@</code> separator is an alias for |
55 |
| - <code>#</code> which does not need to be escaped. |
56 |
| - </p> |
57 |
| - <code>(mel '(h1\#one "heading") '(h2@two "heading"))</code> |
58 |
| - <p>Returns:</p> |
59 |
| - <pre><h1 id="one">heading</h1> |
60 |
| - <h2 id="two">heading</h2> |
61 |
| - </pre> |
| 53 | + <p>A single <code>#</code> separator can be used to associate an ID with |
| 54 | + a tag. Note that the separator must be escaped with a <code>\</code> in |
| 55 | + elisp. The <code>@</code> separator is an alias for <code>#</code> which |
| 56 | + does not need to be escaped.</p> |
| 57 | + |
| 58 | + <div class="example"> |
| 59 | + <code>(mel '(h1\#one "heading") '(h2@two "heading"))</code> |
| 60 | + <p>Returns:</p> |
| 61 | + <pre><h1 id="one">heading</h1><h2 id="two">heading</h2></pre> |
| 62 | + </div> |
62 | 63 | <h3>Attributes</h3>
|
63 |
| - <p>An optional attribute vector may be added as the second element of a node list. |
64 |
| - Each attribute must be a symbol (optionally a keyword) followed by its value. |
65 |
| - The value will be coerced to its string representation.</p> |
66 |
| - <code>(mel '(h1 [:one "true" :two false]))</code> |
67 |
| - <p>Returns:</p> |
68 |
| - <pre><h1 one="true" two="false" /> |
69 |
| - </pre> |
| 64 | + <p>An optional attribute vector may be added as the second element of a node list.Each attribute must be a symbol (optionally a keyword) followed by its value.The value will be coerced to its string representation.</p> |
| 65 | + <div class="example"> |
| 66 | + <code>(mel '(h1 [:one "true" :two false] "heading"))</code> |
| 67 | + <p>Returns:</p> |
| 68 | + <pre><h1 one="true" two="false">heading</h1></pre> |
| 69 | + </div> |
70 | 70 | <h3>Children</h3>
|
71 |
| - <p>Any elements of a node specified after the tag and optional attribute vector are the node's children. They may be either strings or nodes.</p> |
72 |
| - <code>(mel '(p "example " (span "text")))</code> |
73 |
| - <p>Returns:</p> |
74 |
| - <pre><p>example |
75 |
| - <span>text</span> |
76 |
| - </p> |
77 |
| - </pre> |
78 |
| - <h2>The MEL file format</h2> |
79 |
| - <p>A MEL file consists of a body which contains one or more nodes as top-level sexps. |
80 |
| - The forms are implicitly backquoted, so elisp may be used within each node via the |
81 |
| - <code>,</code> and |
82 |
| - <code>,@</code> |
83 |
| - <a href="https://www.gnu.org/software/emacs/manual/html_node/elisp/Backquote.html">backquote constructs</a>. |
84 |
| - </p> |
| 71 | + <p>Any elements of a node specified after the tag and optional attribute vector are the node's children.They may be either strings or nodes.</p> |
| 72 | + <div class="example"> |
| 73 | + <code>(mel '(p "example " (span "text")))</code> |
| 74 | + <p>Returns:</p> |
| 75 | + <pre><p>example |
| 76 | + <span>text</span> |
| 77 | + </p></pre> |
| 78 | + </div> |
| 79 | + <h2>Tempalte Files</h2> |
| 80 | + <p>An <code>htmel</code> file must contain an emacs-lisp program. When |
| 81 | + evaluated, the value of the last expression must be a mel spec for an |
| 82 | + HTML document. For example, the source for this page is stored in |
| 83 | + <code>[./index.htmel](./index.htmel)</code>.</p> |
| 84 | + |
| 85 | + <p>Content stored in other files can be included via the |
| 86 | + <code>mel-load</code> function.</p> |
| 87 | + |
| 88 | + <h2>File Inclusion</h2> |
| 89 | + <p>The <code>mel-load</code> function can be used to parse and load |
| 90 | + files into a template.</p> |
85 | 91 | </body>
|
86 | 92 | </html>
|
0 commit comments