%s`, contents) - } + parser := plugin.ParserForMime(rev.TextMime) + ret += parser(contents) ret += `
diff --git a/fs/html.go b/fs/html.go
index 264473d..63eed74 100644
--- a/fs/html.go
+++ b/fs/html.go
@@ -1,19 +1,14 @@
package fs
import (
- "bytes"
"fmt"
"io/ioutil"
"log"
+ "github.com/bouncepaw/mycorrhiza/plugin"
"github.com/bouncepaw/mycorrhiza/util"
- "gopkg.in/russross/blackfriday.v2"
)
-func markdownToHtml(md []byte) string {
- return string(blackfriday.Run(NormalizeEOL(md)))
-}
-
func (h *Hypha) asHtml() (string, error) {
rev := h.actual
ret := `%s
`, contents)
- }
+ parser := plugin.ParserForMime(rev.TextMime)
+ ret += parser(contents)
ret += `
%s
`, contents)
+ }
+}
diff --git a/util/util.go b/util/util.go
index 7d07b11..545bd37 100644
--- a/util/util.go
+++ b/util/util.go
@@ -1,6 +1,7 @@
package util
import (
+ "bytes"
"strings"
"unicode"
)
@@ -47,3 +48,43 @@ func CanonicalToDisplay(name string) (res string) {
}
return addColonPerhaps(res)
}
+
+// NormalizeEOL will convert Windows (CRLF) and Mac (CR) EOLs to UNIX (LF)
+// Code taken from here: https://github.com/go-gitea/gitea/blob/dc8036dcc680abab52b342d18181a5ee42f40318/modules/util/util.go#L68-L102
+// Gitea has MIT License
+//
+// We use it because md parser does not handle CRLF correctly. I don't know why, but CRLF appears sometimes.
+func NormalizeEOL(input []byte) []byte {
+ var right, left, pos int
+ if right = bytes.IndexByte(input, '\r'); right == -1 {
+ return input
+ }
+ length := len(input)
+ tmp := make([]byte, length)
+
+ // We know that left < length because otherwise right would be -1 from IndexByte.
+ copy(tmp[pos:pos+right], input[left:left+right])
+ pos += right
+ tmp[pos] = '\n'
+ left += right + 1
+ pos++
+
+ for left < length {
+ if input[left] == '\n' {
+ left++
+ }
+
+ right = bytes.IndexByte(input[left:], '\r')
+ if right == -1 {
+ copy(tmp[pos:], input[left:])
+ pos += length - left
+ break
+ }
+ copy(tmp[pos:pos+right], input[left:left+right])
+ pos += right
+ tmp[pos] = '\n'
+ left += right + 1
+ pos++
+ }
+ return tmp[:pos]
+}
diff --git a/util/util_test.go b/util/util_test.go
index bd2f4c6..6d83e36 100644
--- a/util/util_test.go
+++ b/util/util_test.go
@@ -7,12 +7,15 @@ import (
func TestWikilink(t *testing.T) {
atHypha := ":example/test"
results := map[string]string{
- "foo": "/foo",
- "::foo": "/:example/foo",
- ":bar/foo": "/:bar/foo",
- "/baz": "/:example/test/baz",
- "./baz": "/:example/test/baz",
- "../qux": "/:example/qux",
+ "foo": "/foo",
+ "::foo": "/:example/foo",
+ ":bar/foo": "/:bar/foo",
+ "/baz": "/:example/test/baz",
+ "./baz": "/:example/test/baz",
+ "../qux": "/:example/qux",
+ "http://example.org": "http://example.org",
+ "gemini://example.org": "gemini://example.org",
+ "mailto:me@example.org": "mailto:me@example.org",
}
for link, expect := range results {
if res := Wikilink(link, atHypha); expect != res {
diff --git a/wiki/main/doc/plugin/2.markdown b/wiki/main/doc/plugin/2.markdown
new file mode 100644
index 0000000..5568204
--- /dev/null
+++ b/wiki/main/doc/plugin/2.markdown
@@ -0,0 +1,30 @@
+# Plugin system RFC
+MycorrhizaWiki engine does not provide all the functionality a wiki may need and not need. Instead, it relies on the system of plugins.
+
+## Types of plugins
+- **Parser.** They add support for displaying different MIME-types.
+- **Utilities.** They add hyphae to the `:spec` mycelium. These hyphae provide administrative functionality.
+- **Macros.** Something like [moinmoin ones](http://moinmo.in/HelpOnMacros), I guess.
+
+## Default plugins
+Default MycorrhizaWiki distributive is shipped with several plugins installed.
+
+- **parser/markdown.** Support for `text/markdown`. This parser is powered by [russross/blackfriday](https://github.com/russross/blackfriday); this parser is ok, I guess.
+- **parser/creole.** Support for `text/creole`. *Note:* there is no standard Creole MIME type. This parser is powered by [m4tty/cajun](https://github.com/m4tty/cajun); this library is somewhat outdated. Perhaps we'll reimplement it.
+- **parser/gemini.** Support for `text/gemini`. *Not implemented yet.*
+- *what about shipping BBcode? lol*
+- **utility/rename.** Renaming of non-user hyphae. *Not implemented yet.*
+- *what else?*
+- **macro/toc.** Table of contents. *Not implemented yet.*
+- *what else?*
+
+## Plugin implementation
+All plugins are written in Go and are compiled together with MycorrhizaWiki. If a wiki's admin decides to add a plugin, they shall recompile the engine with the plugin.
+
+> Reminds of [something](http://suckless.org/), right?
+
+*But compiling the engine just to add a plugin is stupid!!* Not really. Also, it makes the architecture more simple and secure.
+
+*What if an admin doesn't know how to program?* Plugin installation is basically limited to putting some files into a folder, editing the config and running a shell command. No programming required to install a plugin.
+
+See `plugin` directory at the root of the repo to get inspired by the present parsers.
diff --git a/wiki/main/doc/plugin/meta.json b/wiki/main/doc/plugin/meta.json
index a0a954d..e2f04b5 100644
--- a/wiki/main/doc/plugin/meta.json
+++ b/wiki/main/doc/plugin/meta.json
@@ -14,6 +14,19 @@
"binary_mime": "",
"text_name": "1.markdown",
"binary_name": ""
+ },
+ "2": {
+ "tags": [
+ ""
+ ],
+ "name": "Plugin",
+ "comment": "Update :Main/Doc/Plugin",
+ "author": "",
+ "time": 1593882606,
+ "text_mime": "text/markdown",
+ "binary_mime": "",
+ "text_name": "2.markdown",
+ "binary_name": ""
}
}
}
\ No newline at end of file
diff --git a/wiki/main/doc/wikilink/2.markdown b/wiki/main/doc/wikilink/2.markdown
new file mode 100644
index 0000000..87ababd
--- /dev/null
+++ b/wiki/main/doc/wikilink/2.markdown
@@ -0,0 +1,49 @@
+# Wikilink RFC
+
+All parsers for MycorrhizaWiki provide hyperlink support. Usually, they follow HTML convention.
+
+- `http://example.org/absolute-path`
+- `/rooted-path`
+- `same-folder-path`
+- `../parent-folder-path`
+
+This is not really convenient for wikis where most of links are either rooted or links to children!
+
+All parsers of MycorrhizaWiki are expected to support these types of links and convert them to rooted paths.
+
+- `http://example.org/absolute-path`
+- `hypha in main mycelium`
+- `::hypha in the same mycelium`
+- `:mycelium/hypha in an explicit mycelium`
+- `/subhypha`
+- `./subhypha`
+- `../sibling-hypha`
+
+**TODO:** create a package that implements this thing. NB: to generate a correct link, it is required to know full name of hypha where the link is used.
+
+## Markdown extension
+
+> This is an extension to markdown's syntax that is used in MycorrhizaWiki and nowhere else.
+
+Text wrapped in `[[` and `]]` is a link that has same text and url. *For some reason it's not possible in Markdown without duplicating url*
+
+```
+[[x]] == [x](x)
+```
+
+## Examples
+
+All examples assume that `:example/test` is the current hypha.
+
+```
+wikilink actual path
+foo == /foo
+::foo == /:example/foo
+:bar/foo == /:bar/foo
+/baz == /:example/test/baz
+./baz == /:example/test/baz
+../qux == /:example/qux
+http://example.org == http://example.org
+gemini://example.org == gemini://example.org
+mailto:me@example.org == mailto:me@example.org
+```
diff --git a/wiki/main/doc/wikilink/meta.json b/wiki/main/doc/wikilink/meta.json
index 9bcca8a..7b2f55e 100644
--- a/wiki/main/doc/wikilink/meta.json
+++ b/wiki/main/doc/wikilink/meta.json
@@ -14,6 +14,19 @@
"binary_mime": "",
"text_name": "1.markdown",
"binary_name": ""
+ },
+ "2": {
+ "tags": [
+ ""
+ ],
+ "name": "Wikilink",
+ "comment": "Update :Main/Doc/Wikilink",
+ "author": "",
+ "time": 1593875778,
+ "text_mime": "text/markdown",
+ "binary_mime": "",
+ "text_name": "2.markdown",
+ "binary_name": ""
}
}
}
\ No newline at end of file
diff --git a/wiki/main/testcreole/1.txt b/wiki/main/testcreole/1.txt
new file mode 100644
index 0000000..bc193fa
--- /dev/null
+++ b/wiki/main/testcreole/1.txt
@@ -0,0 +1,135 @@
+//This test was taken from http://www.wikicreole.org/wiki/JSPWikiTestCases?skin=raw//
+
+The following is a test of WikiCreole:
+
+= Top-level heading (1)
+== This a test for creole 0.1 (2)
+=== This is a Subheading (3)
+==== Subsub (4)
+===== Subsubsub (5)
+
+The ending equal signs should not be displayed:
+
+= Top-level heading (1) =
+== This a test for creole 0.1 (2) ==
+=== This is a Subheading (3) ===
+==== Subsub (4) ====
+===== Subsubsub (5) =====
+
+
+You can make things **bold** or //italic// or **//both//** or //**both**//.
+
+Character formatting extends across line breaks: **bold,
+this is still bold. This line deliberately does not end in star-star.
+
+Not bold. Character formatting does not cross paragraph boundaries.
+
+You can use [[internal links]] or [[http://www.wikicreole.org|external links]],
+give the link a [[internal links|different]] name.
+
+Here's another sentence: This wisdom is taken from [[Ward Cunningham's]]
+[[http://www.c2.com/doc/wikisym/WikiSym2006.pdf|Presentation at the Wikisym 06]].
+
+Here's a external link without a description: [[http://www.wikicreole.org]]
+
+Free links without braces should be rendered as well, like http://www.wikicreole.org/ and http://www.wikicreole.org/users/~example.
+
+Creole1.0 specifies that http://bar and ftp://bar should not render italic,
+something like foo://bar should render as italic.
+
+You can use this to draw a line to separate the page:
+----
+
+You can use lists, start it at the first column for now, please...
+
+unnumbered lists are like
+* item a
+* item b
+* **bold item c**
+
+blank space is also permitted before lists like:
+ * item a
+ * item b
+* item c
+ ** item c.a
+
+or you can number them
+# [[item 1]]
+# item 2
+# // italic item 3 //
+ ## item 3.1
+ ## item 3.2
+
+up to five levels
+* 1
+** 2
+*** 3
+**** 4
+***** 5
+
+* You can have
+multiline list items
+* this is a second multiline
+list item
+
+You can use nowiki syntax if you would like do stuff like this:
+
+{{{
+Guitar Chord C:
+
+||---|---|---|
+||-1-|---|---|
+||---|---|---|
+||---|-2-|---|
+||---|---|-3-|
+||---|---|---|
+~}}}
+
+Note: if you look at the source code of the above, you see the escape char (tilde, ~ )
+being used to escape the closing triple curly braces. This is to do nesting because
+all this text is enclosed in nowiki markup.
+}}}
+
+You can also use it inline nowiki {{{ in a sentence }}} like this.
+
+= Escapes =
+Normal Link: http://wikicreole.org/ - now same link, but escaped: ~http://wikicreole.org/
+
+Normal asterisks: ~**not bold~**
+
+a tilde alone: ~
+
+a tilde escapes itself: ~~xxx
+
+=== Creole 0.2 ===
+
+This should be a flower with the ALT text "this is a flower" if your wiki supports ALT text on images:
+
+{{Red_Flower.jpg|here is a red flower}}
+
+=== Creole 0.4 ===
+
+Tables are done like this:
+
+|=header col1|=header col2|
+|col1|col2|
+|you |can |
+|also |align\\ it. |
+|links |[[http://www.wikicreole.org/|Should Work]]|
+
+You can format an address by simply forcing linebreaks:
+
+My contact dates:\\
+Pone: xyz\\
+Fax: +45\\
+Mobile: abc
+
+=== Creole 0.5 ===
+
+|= Header title |= Another header title |
+| {{{ //not italic text// }}} | {{{ **not bold text** }}} |
+| //italic text// | ** bold text ** |
+
+=== Creole 1.0 ===
+
+If interwiki links are setup in your wiki, this links to the WikiCreole page about Creole 1.0 test cases: [[WikiCreole:Creole1.0TestCases]].
\ No newline at end of file
diff --git a/wiki/main/testcreole/2.txt b/wiki/main/testcreole/2.txt
new file mode 100644
index 0000000..2b2d944
--- /dev/null
+++ b/wiki/main/testcreole/2.txt
@@ -0,0 +1,135 @@
+//This test was taken from http://www.wikicreole.org/wiki/JSPWikiTestCases?skin=raw//
+
+The following is a test of WikiCreole:
+
+= Top-level heading (1)
+== This a test for creole 0.1 (2)
+=== This is a Subheading (3)
+==== Subsub (4)
+===== Subsubsub (5)
+
+The ending equal signs should not be displayed:
+
+= Top-level heading (1) =
+== This a test for creole 0.1 (2) ==
+=== This is a Subheading (3) ===
+==== Subsub (4) ====
+===== Subsubsub (5) =====
+
+
+You can make things **bold** or //italic// or **//both//** or //**both**//.
+
+Character formatting extends across line breaks: **bold,
+this is still bold. This line deliberately does not end in star-star.
+
+Not bold. Character formatting does not cross paragraph boundaries.
+
+You can use [[internal links]] or [[http://www.wikicreole.org|external links]],
+give the link a [[internal links|different]] name.
+
+Here's another sentence: This wisdom is taken from [[Ward Cunningham's]]
+[[http://www.c2.com/doc/wikisym/WikiSym2006.pdf|Presentation at the Wikisym 06]].
+
+Here's a external link without a description: [[http://www.wikicreole.org]]
+
+Free links without braces should be rendered as well, like http://www.wikicreole.org/ and http://www.wikicreole.org/users/~example.
+
+Creole1.0 specifies that http://bar and ftp://bar should not render italic,
+something like foo://bar should render as italic.
+
+You can use this to draw a line to separate the page:
+----
+
+You can use lists, start it at the first column for now, please...
+
+unnumbered lists are like
+* item a
+* item b
+* **bold item c**
+
+blank space is also permitted before lists like:
+ * item a
+ * item b
+* item c
+ ** item c.a
+
+or you can number them
+# [[item 1]]
+# item 2
+# // italic item 3 //
+ ## item 3.1
+ ## item 3.2
+
+up to five levels
+* 1
+** 2
+*** 3
+**** 4
+***** 5
+
+* You can have
+multiline list items
+* this is a second multiline
+list item
+
+You can use nowiki syntax if you would like do stuff like this:
+
+{{{
+Guitar Chord C:
+
+||---|---|---|
+||-1-|---|---|
+||---|---|---|
+||---|-2-|---|
+||---|---|-3-|
+||---|---|---|
+~}}}
+
+Note: if you look at the source code of the above, you see the escape char (tilde, ~ )
+being used to escape the closing triple curly braces. This is to do nesting because
+all this text is enclosed in nowiki markup.
+}}}
+
+You can also use it inline nowiki {{{ in a sentence }}} like this.
+
+= Escapes =
+Normal Link: http://wikicreole.org/ - now same link, but escaped: ~http://wikicreole.org/
+
+Normal asterisks: ~**not bold~**
+
+a tilde alone: ~
+
+a tilde escapes itself: ~~xxx
+
+=== Creole 0.2 ===
+
+This should be a flower with the ALT text "this is a flower" if your wiki supports ALT text on images:
+
+{{/Red_Flower.jpg|here is a red flower}}
+
+=== Creole 0.4 ===
+
+Tables are done like this:
+
+|=header col1|=header col2|
+|col1|col2|
+|you |can |
+|also |align\\ it. |
+|links |[[http://www.wikicreole.org/|Should Work]]|
+
+You can format an address by simply forcing linebreaks:
+
+My contact dates:\\
+Pone: xyz\\
+Fax: +45\\
+Mobile: abc
+
+=== Creole 0.5 ===
+
+|= Header title |= Another header title |
+| {{{ //not italic text// }}} | {{{ **not bold text** }}} |
+| //italic text// | ** bold text ** |
+
+=== Creole 1.0 ===
+
+If interwiki links are setup in your wiki, this links to the WikiCreole page about Creole 1.0 test cases: [[WikiCreole:Creole1.0TestCases]].
\ No newline at end of file
diff --git a/wiki/main/testcreole/meta.json b/wiki/main/testcreole/meta.json
new file mode 100644
index 0000000..db9d560
--- /dev/null
+++ b/wiki/main/testcreole/meta.json
@@ -0,0 +1,32 @@
+{
+ "views": 0,
+ "deleted": false,
+ "revisions": {
+ "1": {
+ "tags": [
+ ""
+ ],
+ "name": "Testcreole",
+ "comment": "Update :Main/Testcreole",
+ "author": "",
+ "time": 1593881943,
+ "text_mime": "text/creole",
+ "binary_mime": "",
+ "text_name": "1.txt",
+ "binary_name": ""
+ },
+ "2": {
+ "tags": [
+ ""
+ ],
+ "name": "Testcreole",
+ "comment": "Update :Main/Testcreole",
+ "author": "",
+ "time": 1593882073,
+ "text_mime": "text/creole",
+ "binary_mime": "",
+ "text_name": "2.txt",
+ "binary_name": ""
+ }
+ }
+}
\ No newline at end of file