From 8fe79e85e478dcd001c57b0ab947a05b6490ca13 Mon Sep 17 00:00:00 2001 From: ps-george Date: Wed, 21 Mar 2018 22:21:30 +0000 Subject: Regex fix (#150) * adding decimal place arg to table demo * Updating examples * replacing image test * Update README for TOCite * More changes in TOCite README * Update README.md * testing fix * Adding js * Passing tests. Adding js. * Updating example file * correct html --- examples/example.fmark | 5 +++-- examples/example.html | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'examples') 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) + ![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 bc766c9..be50334 100644 --- a/examples/example.html +++ b/examples/example.html @@ -180,9 +180,8 @@

Links

- Google -

-

+ Google + image

LateX maths

-- cgit From 548773ee47497982547b1820b6a02eb4cd14016b Mon Sep 17 00:00:00 2001 From: Qieerb Date: Thu, 22 Mar 2018 14:04:09 +0000 Subject: Sorts footers --- examples/example.fmark | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/example.fmark b/examples/example.fmark index 47db26c..360f910 100644 --- a/examples/example.fmark +++ b/examples/example.fmark @@ -1,3 +1,5 @@ +%%Style= Harvard + # FMark Example ## Table of contents @@ -93,4 +95,28 @@ Unordered List 2: $$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}$$ \ No newline at end of file +x_{20} & x_{21} & x_{21} \end{pmatrix}$$ + +## Footers + +### Simple footnote + +Here are some[^1] words, and more words[^2]. + +[^2], A few lines to explain the words. + Another line to explain the words. + +[^1], We should probably sort them by ID numbers. + +### References + +All footnotes are collected and displayed at the end of the document[^Eric]. +The style of references are set at the top of the document. + +[^Eric], type= Book, author= Not Eric, year= 2018, title= An Introduction to FMark + +Note: Simple footnotes takes numerical IDs, and references need alphabetical IDs. + +# Other things + +Look the footers are rendered below this. -- cgit From cc7e89378daf0a9c853c8c245e0b54bec6a8fb61 Mon Sep 17 00:00:00 2001 From: Qieerb Date: Thu, 22 Mar 2018 19:32:53 +0000 Subject: RefStyle can be anywhere in document --- examples/example.fmark | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/example.fmark b/examples/example.fmark index 360f910..27d3861 100644 --- a/examples/example.fmark +++ b/examples/example.fmark @@ -1,4 +1,3 @@ -%%Style= Harvard # FMark Example @@ -99,6 +98,8 @@ x_{20} & x_{21} & x_{21} \end{pmatrix}$$ ## Footers +%%RefStyle= Harvard + ### Simple footnote Here are some[^1] words, and more words[^2]. -- cgit