Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
6answers
7k views

Compare and contrast the lightweight markup languages (Textile, Markdown, and reStructuredText) [closed]

Please identify the most popular lightweight markup languages and compare their strengths and weaknesses. These languages should be general-purpose markup for technical prose, such as for ...
16
votes
8answers
7k views

Javascript to convert Markdown/Textile to HTML (and, ideally, back to Markdown/Textile)

There are several good Javascript editors for Markdown / Textile (e.g.: http://attacklab.net/showdown/, the one I'm using right now), but all I need is a Javascript function that converts a string ...
13
votes
4answers
4k views

What is the Best JQuery WYSIWYM Textile Editor?

I need to use a Textile (preferably instead of Markdown), and am looking for a nice WYSIWYM (not WYSIWYG, because of this) JQuery editor. I've seen these: WMD - Markdown, Stack Overflow uses it ...
9
votes
2answers
661 views

Textile parsing in Objective-C?

Are there any libraries to parse Textile (Textile to HTML) which will work in an Objective C iPhone app? C libraries will work too. Update: I couldn't find any sufficiently developed libraries in ...
9
votes
5answers
869 views

How to store lightweight formatting (Textile, Markdown) in database?

I'm going to be implementing a lightweight formatting language (probably Textile, maybe Markdown) in a project I'm working on, and I'm wonder how best to store it in the database. If the user is able ...
9
votes
3answers
3k views

How can I convert HTML to Textile?

I'm scraping a static html site and moving the content into a database-backed CMS. I'd like to use Textile in the CMS. Is there a tool out there that converts HTML into Textile, so I can scrape ...
6
votes
2answers
2k views

JavaScript libraries for Markdown, Textile and others; Anchor references

I need a javascript library to convert structured ascii text to html on the fly. I am especially interested in the following point: I would like do use anchored links inside pages, see ...
4
votes
2answers
226 views

Rendering lightweight markup languages with maven

I would like to render project documentation in html from a lighweight markup language like markdown or textile. What's easiest way to do this?
4
votes
2answers
589 views

Can I get my README.textile into my RDoc with proper formatting?

I like to use Textile or Markdown to write readme files for my projects, but when I generate the RDoc the readme file gets interpreted as RDoc and looks really horrible. Is there a way to make RDoc ...
4
votes
2answers
1k views

Convert HTML to Textile in Ruby?

Is there a ruby library like RedCloth that converts HTML to Textile?
4
votes
3answers
238 views

How would you go about auto-detecting Textile versus Markdown?

I'm considering supporting both Textile and Markdown on a current project. I would prefer not forcing users to choose one or the other. Is there a way to auto-detect which the user is using? How would ...
3
votes
2answers
158 views

How can I obfuscate email addresses contained in 'free input' text fields in Django

In my models I often use text fields that are intended to contain large pieces of textile-formatted input. I'd like to automatically obfuscate any email addresses that are entered into these text ...
3
votes
4answers
707 views

Regular expression to match a block of text up to the first double new line?

I'm making a simple Textile parser and am trying to write a regular expression for "blockquote" but am having difficulty matching multiple new lines. Example: bq. first line of quote second line of ...
3
votes
4answers
2k views

How do I textile and sanitize html?

Now i ran into some stupid situation. I want the users to be able to use textile, but they shouldn't mess around with my valid HTML around their entry. So I have to escape the HTML somehow. ...
2
votes
1answer
98 views

YAML on Textile Parsing

I think this is my first question here. I've been lurking around on StackOverflow for quite some time now it has been a great resource to me. I'm writing a small static site generator that works like ...
2
votes
1answer
211 views

Covert “back” to textile markup when editing post via RedCloth and Acts-as-Textiled?

Question: How can I "convert" my textile generated HTML back to textile markup in my app? Here's the situtation. I managed to piece together a poor man's blog editor in my Rails 3 app by implementing ...
2
votes
1answer
557 views

rails markitup/markdown or textile

I would like to give my user's the option to nicely format their comments. I am not really looking for something super fancy, perhaps something lightweight. There is a ton of information about ...
2
votes
5answers
201 views

Problem with regex for text parsing (similar to textile)

I'm banging my head against the wall trying to figure out a (regexp?) based parser rule for the following problem. I'm developing a text markup parser similar to textile (using PHP), but i don't know ...
2
votes
2answers
1k views

Convert Textile Markup to Markdown?

I'm merging legacy Systems and some components use Markdown and others use Textile formatting. This is extremely confusing to my users. Therefore I want to standardize on Markdown. Is there a way to ...
2
votes
1answer
207 views

What markup language to store in a DB?

Related: http://stackoverflow.com/questions/492515/how-to-store-lightweight-formatting-textile-markdown-in-database I want to store comment formatting in some markup language in our DB. However, we ...
2
votes
3answers
786 views

A “safe” python HTML text formatting (ala textile)

I've been looking around for an existing python library in the style of textile to format text for users to enter. If it was just me entering it, just textile would have been fine, but since the ...
1
vote
1answer
100 views

yard 0.7.3 fails to build my README in both markdown and textile

I've decided to convert the README file in a project of mine to markdown and have been using yard verify the documentation rendered out ok. So I installed rdiscount, changed README to README.md and ...
1
vote
1answer
40 views

How do I escape the markdown parser for certain pieces of text?

I'm using textile to generate HTML for a specific page and in the copy, there is a need for (c) to be generated without the copyright symbol. Unfortunately, textile always does it. Is there a way in ...
1
vote
1answer
72 views

What's the standard file extension for textile files?

What's the standard file extension for textile files? I know that .md is commonly used for markdown files. I didn't know if there was a standard for textile.
1
vote
2answers
82 views

Sinatra app deploys to Heroku, but Textile markup not wrapped in HAML layout

I've written a small Sinatra application (version 1.1.2) and deployed it successfully to Heroku, with just one small problem. One of the views, views/about.textile, is not wrapped properly by the ...
1
vote
1answer
129 views

Textile: line breaks in table cells

How can I get the following with Texttile: <table> <tr> <td> Model: </td> <td> Ford<br/> BMW<br/> VM ...
1
vote
1answer
163 views

Is there any way to comment out text in textile?

LaTeX has %, html has <!-- Does textile have anyway of commenting out text? I couldn't find one, and it seems like it would be a nice feature to have.
1
vote
1answer
129 views

restrict users from using certain tags on redcloth / textile in rails

Hey I'm trying to find a way to restrict users from using certain tags like h1. or h2.in the form field. Like I dont want them to be able to blow up the form field and spam. Is there way to do that ...
1
vote
1answer
102 views

Add textile into rails-i18n

I need to add some sort of markup in my localization files of my rails project. I want something like this: en: hello: **Hello** world! it: hello: ciao **mondo**! and for example **word** could ...
1
vote
1answer
183 views

Handling more than one markup language in a text area

I'd like to now how to handle multiple markup languages (textile, markdown and bbcode) in a text area using ruby on rails 3. The user would be able to select the markup language he/she wants to use, ...
1
vote
2answers
1k views

How to use rails3 with RedCloth. require 'RedCloth' not working

I have installed RedCloth, by using the devkit. Using gem install RedCloth. If I use plain irb, then require 'RedCloth' works fine. But if I use rails console and do require 'RedCloth', it says it ...
1
vote
1answer
65 views

How can I get Textile to create links out of plain URL's?

Many of my users are typing in plain URL's and not using the Textile format for creating links. I would like Textile to just make the URL's linkable to the URL's. I don't really need to worry about ...
1
vote
2answers
116 views

Extract snippet out of HTML with Ruby?

I need to show the first 100 characters of an HTML text, which means, I have to pick the first 100 characters that are not tags and then close any open tags leaving a balanced HTML. Is there any ...
1
vote
2answers
401 views

Customize Python unittest report with HTML or Textile

I'm using unittest for testing my python code. I'm seeking a way that I can do the following: Customize the report of test run. Export it as HTML or Textile document. Any ideas?
1
vote
2answers
127 views
1
vote
1answer
322 views

Grails gdoc editor support (esp IntelliJ)

Since Grails 1.2 there's a documentation engine included: gdoc. The documentation's syntax is based on the Textile format. Is there some editor support for this? My first choice would be a plugin ...
1
vote
1answer
237 views

How to use textile.net

Well, i've search all around but there are no document neither on google nor on textile.net codeplex, and also no code comment about functionality. So I just want to post a question so that people ...
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
46 views

PHP: Converting HTML to textile

I am doing some HTML parsing and I would like to convert some content I get to textile counterparts. <li> -> * <b>, <strong> -> ** etc... and strip others (not permitted ...
0
votes
1answer
29 views

Mylyn WikiText Textile parsing error?

I'm working on migrating a textile plugin for a java blogging platform from one library (textile4j) to Mylyn's WikiText. So far very promising, but I have some unit tests that are failing: public ...
0
votes
1answer
33 views

PHP Textile - div blocks - with class or id

I have tried both Textile 2.0 and 2.2. What I want to do is, display content inside a block with a class attribute. Required HTML would look like this: <div class="myclass"> <p>Some ...
0
votes
1answer
133 views

Rails 3 asset pipeline - How to use image_tag from a textarea

I'm not sure how to accomplish this. I'd like to print out an asset, with it's digest url, by writing in a form's textarea (in this case, using textile) when creating or editing a record. How would ...
0
votes
1answer
33 views

Can someone help me adapt this regex / Textile Live Preview?

I have these lines of code in a jquery textile parser: re = new RegExp('"\\b(.+?)\\(\\b(.+?)\\b\\)":([^\\s]+)','g'); r = r.replace(re,'<a href="$3" title="$2">$1</a>'); re = new ...
0
votes
1answer
46 views

How do I convert textile to Eclipse help using ant?

I've been using the Mylyn WikiText User Guide to learn how to convert textile files to Eclipse help but I also want to be able to do this using ant because, ultimately, I want to have many textile ...
0
votes
0answers
70 views

Ordered List within a Table Cell using Textile

I've got a Wiki which uses Textile to markup text. I'm trying to put a list within a table cell, and I can't seem to figure out how. I'm trying to replicate the following HTML in Textile: ...
0
votes
1answer
29 views

How to deal with textile strike-through

south-west to north-east Will render: "southwest to northeast" using Textile. I'm expecting to get: "south-west to north-east" Isn't there a way to handle these kind of situations? Is that the ...
0
votes
1answer
157 views

Zend Framework Input/Output XSS Filtering: Strip Tags, Textile, BBCode

In my CMS application, administration users can add HTML content via a WYSIWYG editor that gets filtered by HTMLPurifier. I am now wanting to add a message board functionality. I am planning on using ...
0
votes
2answers
63 views

Using Regular Expression to convert Textile italic markup to HTML

I inherited a Wordpress site with a few years worth of Textile markup in image captions. Rather than stripping them out I'd like to use some jQuery to turn italics that have been marked up like this: ...
0
votes
1answer
106 views

Having trouble with Textile PHP parser for MarkItUp

I've created a Jekyll based blog using Textile markdown, and I was working on creating an editor using Markitup I am having a heck of a time getting the php textile parser to work so I can see the ...
0
votes
1answer
76 views

Scala how to turn “urls” in Strings into an Anchor tag XML node.

Please first look at this example below to understand what I am talking about. The input is a string. XML(aka NodeSeq) will be the output. input string example = "Hi this is an example url ...

1 2