Tagged Questions
The maruku tag has no wiki summary.
3
votes
0answers
49 views
Maruku/Markdown syntax meaning “+--” “=--”
I came across some syntax in a raw Markdown file which I believe might be Maruku specific:
+--{.abstract}
### Abstract
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor ...
2
votes
2answers
583 views
Rail 3 escaping maruku
I am using Maruku with my RoR3 app.
But the problem is that when i use the h(text) method to escape the text from the database before i use Maruku it escapes > to > so Maruku wont see this ...
2
votes
3answers
692 views
Embed javascript in markdown
I'm using the Maruku markdown processor. I'd like this
*blah* blah "blah" in [markdown](blah)
<script src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script>
...do ...
2
votes
1answer
1k views
I need to go from HTML to markdown, any suggestion?
I'm using Maruku, to convert from Markdown (superset) to HTML, do you know how can I do to convert from HTML to Markdown?
1
vote
1answer
175 views
Maruku incorrectly parsing second line of code blocks?
I'm using Maruku (Ruby) to parse some Markdown formatted text. I have a problem when trying to format a block of code like such:
This is a normal line
# pretend this line is empty
printf("First ...
1
vote
0answers
227 views
Jekyll documentation to PDF with TOC
I would like to write documentation using Jekyll with HTML and PDF outputs. Html can have a navigation but the PDF should have table of contents. Is there a free and easy way to do that?
The HTML ...
1
vote
0answers
281 views
textile and maruku problem
all.
I've developed custom filters for HAML (http://github.com/alec-c4/cb-haml-filters) and have a small problem with textile and maruku. Maybe you can help me with this
Problem with textile
with ...
0
votes
1answer
127 views
Unable to run jekyll
I use Github pages to host my websites,I have test it on my local machine, and it works well, but when I push my sites on Github, I got an error. It says
The page build failed with the following ...
0
votes
1answer
148 views
pygments problems in jekyll
I use jekyll in github pages.
http://juanpabloaj.github.com/
But, when I add the syntax.css file for pygments
<link rel="stylesheet" href="/css/syntax.css" type="text/css" media="screen" />
...
0
votes
1answer
466 views
Problems using Maruku in Rails 3
I am new to Rails but have used PHP extensively over the years. I am building a simple blog (I know) to get my skills up in the MVC/Rails world.
I have the basics working but have spent the weekend ...
0
votes
1answer
225 views
Extending MaRuKu to generate raw html tags, md_html escapes html
I'm working in the Insitiki code and trying to extend the maruku syntax to generate some custom html tags.
Example:
|youtube 0FWPr6u8YF |
Should print the html code as follows:
<object ...
0
votes
1answer
215 views
Haml in Maruku Filter
For this project, I need to be able to mix Haml tags within the Maruku filter. For example, will I be able to do this:
#contain
:maruku
## Hello H2 Tag
div{:id => 'divinmaruku'}
...
0
votes
1answer
375 views
how to write code blocks using maruku
how can i write code blocks in maruku
for ruby,javascript
currently i am using technique. but my first line moving to left.
hash["test"] = "test"
hash.merge!("test" => "test")
...