Ticket #593 (closed enhancement: fixed)
Opened 8 years ago
Last modified 4 years ago
Wiki support for Textile
| Reported by: | anonymous | Owned by: | daniel |
|---|---|---|---|
| Priority: | low | Milestone: | 0.8 |
| Component: | wiki system | Version: | 0.7.1 |
| Severity: | normal | Keywords: | textile, wiki, pytextile, wikiwords |
| Cc: | |||
| Release Notes: | |||
| API Changes: | |||
Description (last modified by cboos) (diff)
It would be terrific if the wiki could support Textile as a text format.
As as side note, it would also be nice if one could configure the default text format (wiki, rest, textile, etc.)
Attachments
Change History
comment:1 Changed 8 years ago by petrilli@…
comment:2 Changed 8 years ago by daniel
- Milestone set to 0.9
- Priority changed from normal to low
This should be quite easy to add (look at browser:trunk/trac/wikimacros/rst.py for reference).
Default wiki syntax is discussed in #615.
comment:3 Changed 8 years ago by daniel
- Owner changed from jonas to daniel
- Status changed from new to assigned
I commited a first (naive) processor for pytextile in [827].
comment:4 Changed 8 years ago by daniel
- Milestone changed from 0.9 to 0.8
comment:5 Changed 8 years ago by daniel
- Resolution set to fixed
- Status changed from assigned to closed
Initial support in [827].
comment:6 Changed 6 years ago by anonymous
- Milestone changed from 0.8 to 0.9.5
- Resolution fixed deleted
- Status changed from closed to reopened
- Version changed from 0.7.1 to 0.9.4
This ticket was closed but it dosen't seem like it was integrated in the 0.9.x releases! (Apparently the file was removed from the svn repository on the newest releases)
Please leave it open until textile support is integrated again.
comment:7 Changed 6 years ago by eblot
- Milestone 0.9.5 deleted
Please leave your email or name if you set a target milestone
comment:8 Changed 6 years ago by anonymous
Updated link: http://dealmeida.net/pytextile/
comment:9 Changed 6 years ago by cmlenz
- Milestone set to 0.8
- Resolution set to fixed
- Status changed from reopened to closed
- Version changed from 0.9.4 to 0.7.1
Erm, Trac has had Textile support since 0.8, as the ticket said before you reopened it.
The implementation has moved to trunk/trac/mimeview/txtl.py.
You use it like this:
{{{
#!textile
h3. Some heading
Some paragraph *text*
}}}
comment:10 Changed 5 years ago by avonderluft@…
- Resolution fixed deleted
- Status changed from closed to reopened
I've got PyTextile? installed, and Textile is working fine, EXCEPT WikiWords? to not work at all.
This is an example of what I've tried.
h1. Welcome to the Con-way Reference Architecture Project h2. h2 heading h3. h3 heading # numbered list # second # third * unordered list * next bullet * last bullet WikiWordsAreNotWorking
comment:11 Changed 5 years ago by avonderluft@…
- Keywords pytextile, wikiwords added; pytextile removed
- Version changed from 0.7.1 to 0.9.6
OK, sorry about re-opening the ticket, but can you give me any hint as to why Textile formatting is working fine, with the exception of WikiWords??
Thanks.
comment:12 Changed 5 years ago by cboos
- Description modified (diff)
- Resolution set to fixed
- Status changed from reopened to closed
- Version changed from 0.9.6 to 0.7.1
Well, pytextile is not supposed to support WikiWords?, neither does it seem to be extensible (in the way reStructuredText/docutils is) so that we could add support for them.
I'm restoring the ticket to its original fixed state.
comment:13 Changed 4 years ago by saurabhnanda@…
Can this plugin be extended to support Wiki macros (or markup) from within the textile block? For example
{{{
#!textile
h1. First level heading
h2. Second level heading
[[MacroList]]
OR
`= Heading = `
`[[MacroList]]`
}}}
backquote (`) is a suggested escape character to "escape" into Wiki markup mode.



I'd like to second this one too. The proliferation of various formats is getting silly. Textile seems to be one of the best for working in "text areas." Should be doable with just some minor extensions.