I've been unsuccessfully trying to edit the WikiProcessors page to append the content added in WikiProcessors@62 to the end of the table. I haven't been able to create a table with 3 rows. Along the way, I ran into an issue that can be reproduced with the following markup:
{{{#!tr
{{{#!td
Some examples:
{{{
{{{
#!text/html
<h1>text</h1>
}}}
}}}
}}}
{{{#!td
The result will be syntax highlighted HTML code:
{{{
#!text/html
<h1>text</h1>
}}}
The same is valid for all other [TracSyntaxColoring#SyntaxColoringSupport mime types supported].
}}}
}}}
{{{#!tr
{{{#!td
{{{
{{{
#!diff
--- Version 55
+++ Version 56
@@ -115,8 +115,9 @@
name='TracHelloWorld', version='1.0',
packages=find_packages(exclude=['*.tests*']),
- entry_points = """
- [trac.plugins]
- helloworld = myplugs.helloworld
- """,
+ entry_points = {
+ 'trac.plugins': [
+ 'helloworld = myplugs.helloworld',
+ ],
+ },
)
}}}
}}}
}}}
{{{#!td
'''`#!diff`''' has a particularly nice renderer:
{{{
#!diff
--- Version 55
+++ Version 56
@@ -115,8 +115,9 @@
name='TracHelloWorld', version='1.0',
packages=find_packages(exclude=['*.tests*']),
- entry_points = """
- [trac.plugins]
- helloworld = myplugs.helloworld
- """,
+ entry_points = {
+ 'trac.plugins': [
+ 'helloworld = myplugs.helloworld',
+ ],
+ },
)
}}}
}}}
}}}
Pressing Preview Page while in side-by-side edit mode results in the edit window being positioned in the preview area, inside one of the table cells.
By the way, I reproduced it and yes, it's puzzling ;-)