NOTE: If you are a developer, please use a private wiki based on foswiki/trunk on a daily base ...or use
trunk.foswiki.org to view this page for some minimal testing.
Use
Item11383 for general documentation changes for release 1.1.5. Use
Item9693 for docu changes for release 2.0.
Item1915: Ask WysiwygPlugin to protect <latex> markup
| Priority: |
CurrentState: |
AppliesTo: |
Component: |
WaitingFor: |
| Normal |
Closed |
Extension |
MathModePlugin |
|
WysiwygPlugin can now protect XML-like markup, such as MathModePlugin's <latex> markup.
This is the change that is needed:
Index: Foswiki/Plugins/MathModePlugin.pm
===================================================================
--- Foswiki/Plugins/MathModePlugin.pm (revision 4636)
+++ Foswiki/Plugins/MathModePlugin.pm (working copy)
@@ -32,8 +32,14 @@
###############################################################################
sub initPlugin {
($topic, $web) = @_;
-
+
undef $core;
+
+ # Tell WyswiygPlugin to protect <latex>...</latex> markup
+ if (defined &Foswiki::Plugins::WysiwygPlugin::addXMLTag) {
+ Foswiki::Plugins::WysiwygPlugin::addXMLTag('latex', sub { 1 } );
+ }
+
return 1;
}
--
MichaelTempest - 10 Aug 2009
Excellent.
--
MichaelDaum - 10 Aug 2009
The change is checked in.
I do not think any documentation needs to be updated, besides updating the version, release and change history. I assume you would like to do that (since it is your (Michael Daum's) plugin), and I don't know if you have any other changes you would want to include before releasing this plugin. I've marked this task for your attention, so that you can include this change in the change history, if you wish.
--
MichaelTempest - 10 Aug 2009
Published finally in 4.02
--
MichaelDaum - 19 Mar 2011