aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjmtd <jmtd@web>2019-08-21 11:38:08 -0400
committeradmin <admin@branchable.com>2019-08-21 11:38:08 -0400
commit450ffb31bc251c708d9f942f436860f90532e3ce (patch)
treea486d98ecbf75382d4f8d73ceba7aa5658f37692 /doc
parentf6745129d9e617b182a2ad479c6081765c82b910 (diff)
downloadikiwiki-450ffb31bc251c708d9f942f436860f90532e3ce.tar
ikiwiki-450ffb31bc251c708d9f942f436860f90532e3ce.tar.gz
some beginning code to migrate an ikiwiki to hakyll
Diffstat (limited to 'doc')
-rw-r--r--doc/todo/rewrite_ikiwiki_in_haskell/discussion.mdwn15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/todo/rewrite_ikiwiki_in_haskell/discussion.mdwn b/doc/todo/rewrite_ikiwiki_in_haskell/discussion.mdwn
index ff20f7c8a..ccad64351 100644
--- a/doc/todo/rewrite_ikiwiki_in_haskell/discussion.mdwn
+++ b/doc/todo/rewrite_ikiwiki_in_haskell/discussion.mdwn
@@ -63,3 +63,18 @@ Rather than coding plugins for the Perl ikiwiki in Haskell, I wonder how easily
-----
I'm very keen on this, and would be interested in helping. I've been wanting to use ikiwiki for years, but the idea of investing time in the perl ecosystem and perl-based implementation stops me. -- [[Simon Michael]]
+
+-----
+
+I've recently been wondering whether I could migrate my personal blog (powered by IkiWiki) to Hakyll.
+I'm really fond of Ikiwiki's wiki link syntax, as well as the linking rules, and many of the features
+offered by plugins. Therefore I set out to see how easily (and whether it's even feasible) to implement
+them on top of Hakyll. I'm totally new to Hakyll so I don't fully understand some of the concepts but
+I've made some promising initial progress. I decided to share my work in progress experiments here:
+<https://github.com/jmtd/hakyll-ikiwiki>
+
+I can recognise and parse out wiki links and directives. Wikilinks are translated into HTML links, but
+the page-linking rules are not yet implemented (the wiki link target is passed through as-is). For
+Directives, I've written basic implementations of `meta` and `tag`. In both cases, I build up Hakyll
+`Metadata`, which is really a hash map. I've yet to figure out plumbing that back into Hakyll, though.
+I've got an idea of how to handle `template`, but haven't tried coding it up yet. — [[Jon]]