The core TiddlyWiki 5 plugin library includes one that adds support for 
Markdown tiddlers. It uses “classic” Markdown, rather than GitHub Flavoured 
Markdown, but BJ has an alternative plugin that does support GFM:

http://bjtools.tiddlyspot.com/#MarKed

Under Node.js, you can easily process an entire directory of .md files into 
tiddlers. Create a folder within your wiki “tiddlers” folder containing a 
`tiddlywiki.files` file with something like:

{
        "directories": [
                {
                        "path": "./path/to/the/folder/containing/the/files",
                        "filesRegExp": "^.*\\.md$",
                        "isTiddlerFile": false,
                        "fields": {
                                "title": {"source": "filename"},
                                "created": {"source": "created"},
                                "modified": {"source": "modified"},
                                "type": "text/markdown",
                        }
                }
        ]
}

See http://tiddlywiki.com/prerelease/#tiddlywiki.files%20Files

Best wishes

Jeremy.

> This sounds more difficult then you probably wish. You would need a script to 
> convert the markdown files to tid files. You would have to add the markdown 
> plugin to the tiddlywiki.info <http://tiddlywiki.info/> and then build. 
> TiddlyWiki is pretty much a single page HTML file so updates would need to be 
> managed via webhooks on a build system and the changes would be one way only 
> which means any edits on the tiddlywiki side would not be reflected on the 
> github wiki side.
> 
> Just think off the top of my head. It has been my experience that if your 
> team is already failure with GH wiki that attempting to on board them to TW 
> is a huge step. I've found that those who find TW on their own fall in love 
> with it. Those who are given TW from others get agitated and scornful. But I 
> could just be a pessimist.
> 
> On Wednesday, March 15, 2017 at 8:26:32 AM UTC-4, Jack Armitage wrote:
> Hello,
> 
> I am part of a project that currently uses a GitHub wiki as it's main source 
> of documentation (https://github.com/belaplatform/bela/wiki 
> <https://github.com/belaplatform/bela/wiki>).
> 
> Since it is based on Markdown, is it possible to automagically turn it into a 
> TiddlyWiki? Further, would it be possible to upstream updates from the GitHub 
> wiki?
> 
> Thanks,
> 
> Jack
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+unsubscr...@googlegroups.com 
> <mailto:tiddlywiki+unsubscr...@googlegroups.com>.
> To post to this group, send email to tiddlywiki@googlegroups.com 
> <mailto:tiddlywiki@googlegroups.com>.
> Visit this group at https://groups.google.com/group/tiddlywiki 
> <https://groups.google.com/group/tiddlywiki>.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/32fe3015-6bdf-4fca-a51f-ab279900890e%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/tiddlywiki/32fe3015-6bdf-4fca-a51f-ab279900890e%40googlegroups.com?utm_medium=email&utm_source=footer>.
> For more options, visit https://groups.google.com/d/optout 
> <https://groups.google.com/d/optout>.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/B9A9B32F-E88F-45EC-999F-2B20C381A0EA%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to