aboutsummaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorps-george <punter.s.g@gmail.com>2018-03-21 22:12:03 +0000
committerps-george <punter.s.g@gmail.com>2018-03-21 22:12:03 +0000
commitd0aa396afe4928910ba2fc8ad498be8548b32459 (patch)
tree4f9e5dd7f490ae4804ed3cd6dcca799cb89bd036 /examples
parentdf611bc734ed1bef8d55c84977aed39ec04ce2d0 (diff)
downloadFMark-d0aa396afe4928910ba2fc8ad498be8548b32459.tar.gz
FMark-d0aa396afe4928910ba2fc8ad498be8548b32459.zip
Updating example file
Diffstat (limited to 'examples')
-rw-r--r--examples/example.fmark5
-rw-r--r--examples/example.html71
2 files changed, 73 insertions, 3 deletions
diff --git a/examples/example.fmark b/examples/example.fmark
index 5713234..47db26c 100644
--- a/examples/example.fmark
+++ b/examples/example.fmark
@@ -84,11 +84,12 @@ Unordered List 2:
### Links
-[Google](www.google.com)
-
+[Google](http://www.google.com)
+<!-- Images produce correct HTML but don't display in VS Code-->
![image](test_img.jpg)
## LateX maths
+
$$2* \begin{pmatrix}
x_{00} & x_{01} & x_{01} \newline
x_{10} & x_{11} & x_{11} \newline
diff --git a/examples/example.html b/examples/example.html
index dfd3adc..38e6b0e 100644
--- a/examples/example.html
+++ b/examples/example.html
@@ -78,7 +78,76 @@
</tr>
</tbody>
</table>
- <h2 id="LateX_maths5">LateX maths</h2>
+ <h2 id="Standard_Markdown5">Standard Markdown</h2>
+ <h3 id="Styling6">Styling</h3>
+ <p>
+ <em>Emphasis</em> or
+ <em>Emphasis</em>
+ </p>
+ <p>
+ <strong>Bold</strong> or
+ <strong>bold</strong>
+ </p>
+ <p>
+ <em>
+ <strong>Both</strong>
+ </em> or
+ <em>
+ <strong>both</strong>
+ </em>
+ </p>
+ <p>Note:
+ <em>underscores</em> must have a space on either side.</p>
+ <h1 id="Heading_17">Heading 1</h1>
+ <h2 id="Heading_28">Heading 2</h2>
+ <h3 id="Heading_39">Heading 3</h3>
+ <h4 id="Heading_410">Heading 4</h4>
+ <h5 id="Heading_511">Heading 5</h5>
+ <h5 id="Heading_612">Heading 6</h5>
+ <h3 id="Lists13">Lists</h3>
+ <p>Ordered List:</p>
+ <ol>
+ <li>First</li>
+ <li>Second</li>
+ <ol>
+ <ol>
+ <li>Nested First</li>
+ <li>Nested Second</li>
+ </ol>
+ </ol>
+ <li>Third</li>
+ </ol>
+ <p>Unordered List:</p>
+ <ul>
+ <li>First</li>
+ <li>Second</li>
+ <ul>
+ <ul>
+ <li>Nested First</li>
+ <li>Nested Second</li>
+ </ul>
+ </ul>
+ <li>Third</li>
+ </ul>
+ <p>Unordered List 2:</p>
+ <ul>
+ <li>First</li>
+ <li>Second</li>
+ <ul>
+ <ul>
+ <li>Nested First</li>
+ <li>Nested Second</li>
+ </ul>
+ </ul>
+ <li>Third</li>
+ </ul>
+ <h3 id="Links14">Links</h3>
+ <p>
+ <a href="http://www.google.com">Google</a>
+ <!-- Images produce correct HTML but don't display in VS Code-->
+ <img src="test_img.jpg" alt="image">
+ </p>
+ <h2 id="LateX_maths15">LateX maths</h2>
<p>$$2* \begin{pmatrix} x_{00} & x_{01} & x_{01} \newline x_{10} & x_{11} & x_{11} \newline x_{20} & x_{21} & x_{21} \end{pmatrix}$$</p>
<script
type="text/javascript" async src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML"></script>