On Wed, Oct 27, 2010 at 11:22 AM, Jim Gay <[email protected]> wrote:
What's the old CMS? That's not standard textile.
>
As I stated in my original e-mail, Radiant 0.6.7...which is using RedCloth
3.0.4.
In redcloth.rb in that version of RedCloth, I'm seeing this:
# == Quick Phrase Modifiers
#
# Quick phrase modifiers are also included, to allow formatting
# of small portions of text within a paragraph.
#
# \_emphasis\_
# \_\_italicized\_\_
# \*strong\*
# \*\*bold\*\*
# ??citation??
# -deleted text-
# +inserted text+
# ^superscript^
# ~subscript~
# @code@
*# %(classname)span%*
#
QTAGS = [
['**', 'b'],
['*', 'strong'],
['??', 'cite', :limit],
['-', 'del', :limit],
['__', 'i'],
['_', 'em', :limit],
* ['%', 'span', :limit],*
['+', 'ins', :limit],
['^', 'sup'],
['~', 'sub']
]