--
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+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
Talking about including documentation... Jeremy, I saw that you have included more addons in the Codemirror plugin. Would you consider explaining how to use them? I know how, but maybe not the average user.
Regards
Talking about including documentation... Jeremy, I saw that you have included more addons in the Codemirror plugin. Would you consider explaining how to use them? I know how, but maybe not the average user.
Regards
--
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+...@googlegroups.com.
To post to this group, send email to tiddl...@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.
to include code (ie your script references etc) in the header section, put the code into a tiddler and tag it with $:/core/wiki/rawmarkup.
cheers
BJ
On Tuesday, May 20, 2014 1:56:09 PM UTC+1, Felix Küppers wrote:Hi,
I want to include my external library in TW5, however, everytime I save TW, it overrides my script reference in the html code.
the code is inserted by me manually inside the <head> tag
<script src="js/jquery-1.9.1.js" type="text/javascript"></script>
<script src="js/my.js" type="text/javascript"></script>
<link href="css/my.css" rel="stylesheet" type="text/css" />
...
any ideas how to solve it?
many thanks!
<head> <script src="path/to/jquery.js" type="text/javascript"></script> <script src="path/to/jquery.mmenu.min.all.js" type="text/javascript"></script> <link href="path/to/jquery.mmenu.all.css" type="text/css" rel="stylesheet" /> </head> see http://mmenu.frebsite.nl/tutorial/I guess the css can be simply merged into the central stylesheet.
I guess the css can be simply merged into the central stylesheet.
Is it possible to add the jquery.mmenu.min.all.js within a tiddler.
My purpose ist to add a menu called mmenu to my TWC...