Re: [tw] Re: GitHub MD wiki -> TiddlyWiki?

2017-03-16 Thread Jack Armitage


On Thursday, March 16, 2017 at 12:38:38 PM UTC, PMario wrote:
>
> As I wrote, that should be possible too. ... But I'm not sure, how you 
> would want to implement it. .. IMO for a "low latency" system, it's 
> important, that only the stuff that's really needed is running. ... So the 
> final workflow, will need to be discussed. 
>

Absolutely, this would be a central consideration. It would be very useful 
to be able to comfortably edit and add media to the wiki whilst a real-time 
program is running! 

-- 
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/f251d644-e385-4a9f-866f-ec42d039498a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: GitHub MD wiki -> TiddlyWiki?

2017-03-16 Thread PMario
On Wednesday, March 15, 2017 at 9:29:07 PM UTC+1, Jack Armitage wrote:
>
> Thanks for the replies everyone. It certainly seems doable!
>

Yes. 
 

> @Pmario, we have not really proposed this as a definite change, and the 
> wiki would still stay on GitHub at least for now. We are interested in 
> options for having the wiki available in our environment though so 
> TiddlyWiki could be a possibility for that. 
>

That's a good thing to read. I just wanted to be sure, that there is some 
discussion going on. 
 

> The benefit that I see is that each user could then edit this base wiki to 
> make it their own and document their projects, and potentially contribute 
> back to the main wiki.
>

As I wrote, that should be possible too. ... But I'm not sure, how you 
would want to implement it. .. IMO for a "low latency" system, it's 
important, that only the stuff that's really needed is running. ... So the 
final workflow, will need to be discussed. 

-mario

-- 
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/c7f8bfe0-d5bd-4f4e-be13-572aadf29b27%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: GitHub MD wiki -> TiddlyWiki?

2017-03-15 Thread Jack Armitage
Thanks for the replies everyone. It certainly seems doable!

@Pmario, we have not really proposed this as a definite change, and the 
wiki would still stay on GitHub at least for now. We are interested in 
options for having the wiki available in our environment though so 
TiddlyWiki could be a possibility for that. The benefit that I see is that 
each user could then edit this base wiki to make it their own and document 
their projects, and potentially contribute back to the main wiki.

Jack

On Wednesday, March 15, 2017 at 5:41:19 PM UTC, Jeremy Ruston wrote:
>
>
> As Jeremy pointed out. Relatively straight forward, but some tweaking 
> needed. Since There are only 39 wiki pages atm. Manually transferring the 
> stuff should be about 1h work.  
>
>
> It can be automated easily; GitHub wikis are stored as repositories behind 
> the scenes (see 
> https://help.github.com/articles/adding-and-editing-wiki-pages-locally/). 
> So you can clone the wiki repo with:
>
> git clone https://github.com/BelaPlatform/Bela.wiki.git
>
> Best wishes
>
> Jeremy.
>

-- 
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/f5ea6994-ca67-4646-9d8f-287c32a547f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: GitHub MD wiki -> TiddlyWiki?

2017-03-15 Thread Jeremy Ruston
> 
> As Jeremy pointed out. Relatively straight forward, but some tweaking needed. 
> Since There are only 39 wiki pages atm. Manually transferring the stuff 
> should be about 1h work.  

It can be automated easily; GitHub wikis are stored as repositories behind the 
scenes (see 
https://help.github.com/articles/adding-and-editing-wiki-pages-locally/). So 
you can clone the wiki repo with:

git clone https://github.com/BelaPlatform/Bela.wiki.git

Best wishes

Jeremy.

-- 
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/B3209539-788C-4178-B949-B86DBE541C1F%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: GitHub MD wiki -> TiddlyWiki?

2017-03-15 Thread Jeremy Ruston
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  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 
> ).
> 
> 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 
> .
> 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/32fe3015-6bdf-4fca-a51f-ab279900890e%40googlegroups.com
>  
> .
> For more options, visit 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.