Displaying 20 results from an estimated 100 matches similar to: "Patch for superredcloth to enable textile table headers"
2008 Feb 24
1
Install / Build fail on OSX Server 10.5.2
Hello,
I would like to install SuperRedCloth on my server, here is the entire
log :
gem install superredcloth --source http://code.whytheluckystiff.net
Building native extensions. This could take a while...
ERROR: Error installing superredcloth:
ERROR: Failed to build gem native extension.
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
extconf.rb install superredcloth
2007 Dec 11
2
Build issues on Leopard
Hello,
I''m having some issues building r190 on Leopard (10.5.1):
$ rake
(in /Users/johan/temp/superredcloth)
ragel superredcloth_scan.rl | rlgen-cd -G2 -o superredcloth_scan.c
ragel superredcloth_inline.rl | rlgen-cd -G2 -o superredcloth_inline.c
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby
extconf.rb
checking for main() in -lc... yes
creating Makefile
make
gcc -I.
2007 Feb 04
0
SuperRedCloth 1.160
Okay, update:
gem install superredcloth --source http://code.whytheluckystiff.net
Or:
http://code.whytheluckystiff.net/dist/superredcloth-1.160.tgz
This one has better list, table and <notextile> support. I am close
to releasing a SuperRedCloth on Rubyforge, so PLEASE! help me test
this out by trying it on your personal wikis and blogs.
Still to be done:
* support for
2007 May 08
2
Extending SuperRedCloth
Fellows of the cloth --
I''m writing code that subclasses RedCloth and emits styled text that
is not HTML. For example, I''m going to be emitting RTF and other
formats from Textile or Markdown.
I''ve got it working quite well with plainclothed RedCloth, but I can''t
seem to override any of the methods in SuperRedCloth. Here''s a sample:
2007 Nov 23
1
SuperRedCloth inserting <pre><code>
I maintain a web application frozen to version Ruby 1.8.6 and RedCloth 3.0.4
Whenever I insert a newline followed by a white space, SuperRedCloth, wraps the text with <pre><code> tags.
Say for example I write
###############
Hi
This is me
###############
This piece of text gets translated to
<p>Hi</p><pre><code>This is me</code></pre>
2007 Jan 23
7
RedCloth and SuperRedCloth
Good day to the parliament of RedCloth followers gathered here.
Grave matters at hand!!
I''m personally quite unhappy with the state of RedCloth and am
reluctant to release the code in the repository. I can''t say if the
code works with any confidence because I can''t generate the
(Poignant) Guide with the current RedCloth. I know some things are
fixed, but I''m
2008 Jan 07
0
HTML handling in SuperRedCloth
I''m having all kinds of fun trying to get HTML to work "properly" in
SRC (mild sarcasm). I''m still working on the problem, but wanted to
run it by the group.
Currently, Textile2 lets you put in HTML as long as it''s in the same
block (i.e. no double-returns).
<ul>
<li>You can put HTML code right in Textile.</li>
<li>It will
2007 Mar 24
0
Stability and usability of SuperRedCloth - particularly break handling
I was just wondering if I should upgrade to using SRC, as it sounds
like it is going to be what becomes RedCloth 4. Reading the wiki and
the announcements it''s supposedly under very active development,
nearing release, and the breaking options are next on the list. Since
there hadn''t been an update in a little while, I was curious where it
stands now.
The break handling in
2007 Mar 21
0
using ''_.'' to indicate table headers doesn''t work in SRC v1.160
I''m using" superredcloth (1.160)
Using ''_.'' to indicate table headers doesn''t work:
$ irb
irb(main):001:0> require ''superredcloth''
=> true
irb(main):005:0> SuperRedCloth.new("|_. name |_. age |_. sex |\n|
joan | 24 | f |\n| archie | 29 | m |\n| bella | 45 | f |\n").to_html
=>
2008 Mar 13
3
Whitespace in SuperRedCloth
Up to now, the tests have been running with whitespace stripped out.
Newlines and tabs are insignificant in HTML, so I figured why bother
with them?
Now I realize why: they''re significant in pre tags and they also make
your code look pretty!
I''ve been working to get SRC output to roughly match Tetxile2''s as
far as tabs and newlines go. It''s tough and
2007 Jan 28
1
^SUPER^ _RED_ ~CLOTH~ 1.153
New gems (source and win32):
gem install superredcloth --source http://code.whytheluckystiff.net
Use it like:
SuperRedCloth.new("_huh?_").to_html
Okay, getting close! A lot more tests are passing. There are still
about 50 tests failing. Most of these are due to ol/ul list
problems.
Here''s what''s still broken:
* Options (:hard_breaks, :filter_html, etc.)
*
2007 Jul 16
6
Advice regarding extending RedCloth
Hello,
I am in a bit of a bind. I need to reliably parse mediawiki markup to
html, and the only parser that I can find (mediacloth) has a lot to be
desired, so I would like to extend something that works and parse
mediawiki markup. My question to this list is should I start working
on RedCloth or SuperRedCloth or is there a difference as far as
extending them? Also does anyone know of a write up
2007 Aug 23
20
Eliminating bad tests from SuperRedCloth
Hi, all. I haven''t felt at liberty to go axing test cases, but some
of the 33 that are failing now are ones I don''t think we want to pass?
cruft coming from Markdown or made up to fill a gap some years ago.
I''d like to float the proposition that we make Super (and thus
RedCloth 4) behave as identically as possible to Textile2 as working
on
2008 Jul 24
1
Excerpting a summary from my marked-up blog post without breaking html tags?
Hi there,
I''m working on a simple blog project. I''d like to automatically
generate a 100 word excerpt of each article to display on the main
page, and require the user to click on the article to read the whole
thing. The problem is, if the hundredth word is in the middle of a
block quote or a heading or something, the whole page gets messed up.
What''s the easiest way
2008 Mar 23
1
redcloth gem ragel code doesn''t build in jruby
I tried to install RedCloth-3.274 in jruby (trunk) but the install
failed when RedCloth tried to build the C code using mkmf:
I forget whether SuperRedcloth ever did build in JRuby??
I know Hpricot (which also uses ragel which can compile to Java code)
works in JRuby -- with the patch here:
https://code.whytheluckystiff.net/hpricot/ticket/131)
I might be confusing the two ...
FYI: If you
2008 May 13
4
hard_breaks issues
Hello,
I''m new to this list, so first of all, many thanks to RedCloth''s
developers, it really helps me in many ruby apps :-)
I post here because I''d like to have a clear view on "hard_breaks"
related issues. I saw old references on the web and on the archives on
this ML, I''d like a fresh view !
It seems that RedCloth 3.0.4 does not handle
2007 Dec 19
0
Convert all HTML entities within <pre> tags?
Textile 2.0.0:
bc. This is within a block of code, so < and > should be *entities*.
You can talk about a <p> tag if you wish and it will be properly
escaped.
<pre>
You can''t make something actually <b>bold</b> within.
</pre>
Output:
<pre><code>This is within a block of code, so < and > should be
*entities*. You can
2007 May 01
0
recommendation?
Hi, what''s the status of superredcloth? is this the recommended one
to use for a live site, or should i hold off and use redcloth
"regular" for the time being? I don''t feel like being on the "edge",
i just want something stable and usable.
tia
linoj
2008 Mar 10
3
Only 5 tests out of 376 currently failing!
Good news! SuperRedCloth is down to just five failing tests! I was
down to 10 or so in mid-February but then I added test cases from
"The official reference manual for Textile 2", which added 97 new
tests, many of them failing. I''m happy to say, they''re almost all
passing now.
Four of these last five I just need to check with you on before I
deviate from
2007 Jan 24
14
Strikethroughs and dashes
Who really uses strikethroughs?? This is one of the most common
tripwires in RedCloth.
You are the friend--the only friend--who has offered to help.
Obviously em dashes.
I died in -2006- wait, no, two-thousand-FIVE!
Obviously strikethrough.
I''m going on a trip - a long one - to the Virgin Islands.
That''s got to be en dashes.
Such a cheap, no-hassle, no-worry