Patch #2054 ยป tables.patch
| migrate_from_trac.rake (working copy) | ||
|---|---|---|
| 296 | 296 |
text = text.gsub(/~~/, '-') |
| 297 | 297 |
text = text.gsub(/`/, '@') |
| 298 | 298 |
text = text.gsub(/,,/, '~') |
| 299 |
# Tables |
|
| 300 |
text = text.gsub(/\|\|/, '|') |
|
| 301 | ||
| 299 | 302 |
# Lists |
| 300 | 303 |
text = text.gsub(/^([ ]+)\* /) {|s| '*' * $1.length + " "}
|
| 301 | 304 | |