search for: maruku

Displaying 20 results from an estimated 40 matches for "maruku".

Did you mean: markku
2006 Dec 27
4
Maruku: a better Markdown interpreter for Ruby.
Hello to all! Maruku is a Markdown interpreter written in Ruby. It is released under the GPL. Maruku implements the original Markdown syntax and all the improvements in PHP Markdown Extra. Moreover, it implements some ideas from MultiMarkdown, and adds a syntax for specifying metadata for block elements. Unlike Bluec...
2007 Mar 04
1
Maruku + webgen - access to meta-information from content converter
Hi! I am the author of Maruku (http://maruku.rubyforge.org/), a Markdown-superset interpreter. At the moment I am 1) learning webgen 2) integrating Maruku+webgen 3) converting my website to webgen, so I have many questions (one question, one message). First one: I wrote the straightforward maruku.rb converter (see attachmen...
2008 Sep 17
2
bug in maruku with single-element nested unordered list?
This does not produce the expected output, yet does work on the dingus [1]: * asdf * asdf >> require ''maruku'' => true >> doc = Maruku.new("* asdf\n * asdf\n") => md_el(:document,[ md_el(:ul,[md_el(:li_span,["asdf * asdf"],{:want_my_paragraph=>false},[])],{},[]) ],{},[]) >> doc.to_html => "<ul>\n<li>asdf * asdf</li>\n</ul>&...
2008 Jan 02
5
anchor tags?
Hi, Is there a cool webgen way to do anchor tags? I''ve just been doing this: <span id="anchor_name"/> ...but is there a better way? Thanks, Chad
2010 Feb 15
29
webgen 0.5.11 released
...: 1. The dependency on facets has been removed since it was only used in two or three places and since the facets project is not very stable regarding its API. 2. The default markup language used by the webgen is Markdown and the default processor for converting Markdown to HTML has been Maruku for a long time. However, Maruku has some bugs that need to be fixed and although it runs under Ruby 1.9 there are some issues. Therefore the new default processor for Markdown will be [kramdown][2] from now on. Aside from being actively maintained, it is about 5x faster than Maruku...
2007 Jan 02
3
Revised - Revised 2005 proposal for meta-data
Happy new year! This is the revised revised proposal: http://maruku.rubyforge.org/proposal.md http://maruku.rubyforge.org/proposal.html http://maruku.rubyforge.org/proposal.pdf I wait for comments. -- Andrea Censi "Life is too important to be taken seriously" (Oscar Wilde) Web: http://www.dis.uniroma1.it/~censi
2006 Dec 29
3
Revised 2005 proposal for meta-data
Hello to all! This is the revised 2005 proposal for meta-data, much more in detail: http://maruku.rubyforge.org/proposal.md http://maruku.rubyforge.org/proposal.html http://maruku.rubyforge.org/proposal.pdf I wait for comments. At the end of the document, there are some open issues. And I need a regexp wizard to look over the "grammar" section. Cheers, -- Andrea Censi "...
2007 Dec 24
3
[new user] some features requests ...
Hi, After many tries, i''ve decided to give up dynamic websites, which definitely do not match my needs, and instead replace my blog by a webgen site. I''ve however some unanswered questions. 1) RSS One of the main interest of dynamic website is the ability to provide user a view to last updated pages, thanks to RSS. Is there a way for webgen to generate a RSS file from last
2009 Feb 05
0
Slide Show (S9) Gem V0.7 - Better Support for More Markdown (Ruby) Libs and More
Hello, == What's new in 0.7? I removed the dependency on Maruku (and Oniguruma) and now allow and check for optional installed Markdown libraries/gems. For now the search order for markdown libraries is first come, first serve, that is: rdiscount > rpeg-markdown > maruku > bluecloth (fallback, always present because it's required in gem spec)....
2007 Jan 10
1
Proposal for meta-data (third revision)
Hello again! This is the revised revised revised proposal: http://maruku.rubyforge.org/proposal.md http://maruku.rubyforge.org/proposal.html http://maruku.rubyforge.org/proposal.pdf The main change was to use an opening string of brace+colon "{:" to not lock-up the precious "{" forever, so that in the future one could think of using the braces also...
2006 Dec 30
4
Escaping inside code blocks?
I am doing unit-tests for Maruku and every once in a while I run into some doubts. I am posting a lot to the list, but all of these messages should be in-topic (tell me if not). Consider the input: --- `There is a literal backtick (\`) here.` `There is a literal backtick (\\`) here.` ``There is a literal backtick (`) here.`` --...
2007 Mar 09
3
Transformation order
...rter ... - Replace tags I think it should be the other way around. I wrote this plugin that transform {flickr: <url of the photo>} into something like: <div> Foto, caption, etc. </div> Now, because of the order of transformations, the content-converter (bluecloth or maruku) will first transform the tag in: <p>{flickr: <url of the photo>}</p> and then the tag processor will transform this in <p><div> Foto, caption, etc. </div></p> So, two questions: 1 - is possible to customize the order of transformations? 2 - I...
2008 Mar 22
7
Babelmark
...PHP Markdown Extra, Python Markdown, Text::Markdown and Text::MultiMarkdown, and finally Showdown. Unfortunatly, my web host doesn't do Ruby, nor Java, C# or Lua, so the online version is missing a couple of interesting implementations. Locally on my computer Babelmark also do BlueCloth, Maruku, MarkdownJ, markdown.lua, and Pandoc. I'm very sorry if your Markdown implementation can't be part of Babelmark online, but if anyone has a better host to offer for Babelmark, ideally with support for all of these, I'd gladly send him the scripts. You can find Babelmark here:...
2007 Mar 04
1
Questions about tags
Two questions about tags: 1) How can I disable tags execution? In my webpage I use a lot of "{" "}" (LaTeX / Bibtex); also Maruku uses the brackets for uses; plus, I don''t need tags. 2) Is it possible to change the magic characters "{" and "}"? Ok, not really a question -- the answer is no, I looked at the source code. If it was possible to customize, I would have used "{wg:" in place...
2011 Sep 19
0
Arbitrary in-content metadata or markup extensions - standard/consensus/process?
...I am interested in creating an extension (probably to MarkdownDeep, as I'm most comfortable in the microsoft dev stack) that supports these types of features, and I'm wondering what sort of syntax would be most "faithful" to existing markdown standards. On the one hand, I see Maruku's curly-braces proposal for arbitrary meta-data on arbitrary elements (http://maruku.rubyforge.org/proposal.html), and on the other hand I see stackoverflow using very different "Tags" syntax as [tag:Something] and "Spoilers" as a variation on blockquote. Maybe the closest t...
2011 Jul 13
3
php-markdown-extra-extended - my humble attempt at extending php-markdown
Dear all, I have used Markdown via Drupal a few months now, with a customer site and my currently my own blog and based on that practical experience I wanted to add some extra functionality to PHP Markdown Extra, so out of this grow my (extended) weekend project https://github.com/egil/php-markdown-extra-extended The big missing item right now that I would like to implement is the ability to add
2009 Jan 29
2
HOWTO install webgen 0.5.6 on Debian GNU/Linux etch
Hi all, Cristian our sys-admin wrote a short HOWTO for Webgen 0.5.6 on Debian Etch, see https://wiki.fsfe.org/FellowshipHacks/Webgen. I thought it might be of interest for others as well. If you know a better way, please let us know. Best wishes, Matthias -- Deputy German Coordinator, Fellowship Coordinator Free Software Foundation Europe (FSFE) [] (http://fsfeurope.org) Join the
2007 Aug 27
2
Benchmarks with TextMate's manual
The following benchmarks have been obtained using the TextMate manual as the input source: <http://macromates.com/textmate/manual/source.tbz> Using PHP Markdown, parsing the 24 files separately (with the reference file appended to each of them), I get this (on an iBook G4 1.2 Ghz): Total Avg. Min. Q1. Med. Q3. Max. Parse Time (ms):
2012 Dec 22
2
Tools for converting markdown to other formats with templating support
...eaks of where the PDF would be paginated. Now, for the cover page, I explored three possibilities: - Document-level metadata (as supported by python-markdown with a plugin). Specify some fields in there that I could manually output in the right format. - Inline metadata (as supported by ruby's maruku). Not sure how i'd make it spit this out differently though - Specially formatting some fields (e.g. building a level 1 header with DOCTITLE: in it or something, parsing it out before it hits the markdown library and prepending it to the document) Yes, I'm aware HTML isn't designed to...
2007 Dec 08
2
Great work!
I've just spent a happy couple of days writing a text file for formatting with Markdown. The results are phenomenal! It's easy to write, and attractive to read. I'll try to send a Christmas present to the writer :-) But when I looked at the perl source, I also found that it was small and well-structured. Of course, I couldn't resist adding a few things that appealled to me.