[MKDoc-commit] [1.8] MKDoc::XML::Tagger was being used to add
hyperlinks to Text
bruno at mkdoc.demon.co.uk
bruno at mkdoc.demon.co.uk
Wed Mar 9 13:50:52 GMT 2005
Log Message:
-----------
[1.8] MKDoc::XML::Tagger was being used to add hyperlinks to Text
components instead of MKDoc::XML::Tagger::Preserve.
Modified Files:
--------------
mkd/flo/editor:
Text.pm
-------------- next part --------------
Index: Text.pm
===================================================================
RCS file: /var/spool/cvs/mkd/flo/editor/Text.pm,v
retrieving revision 1.20
retrieving revision 1.21
diff -Lflo/editor/Text.pm -Lflo/editor/Text.pm -u -r1.20 -r1.21
--- flo/editor/Text.pm
+++ flo/editor/Text.pm
@@ -24,7 +24,7 @@
package flo::editor::Text;
use flo::Editor;
use flo::Standard;
-use MKDoc::XML::Tagger;
+use MKDoc::XML::Tagger::Preserve;
use MKDoc::Text::Structured;
use strict;
@@ -81,7 +81,7 @@
push @newl, $new;
}
- return MKDoc::XML::Tagger->process_data ($data, @newl);
+ return MKDoc::XML::Tagger::Preserve->process_data (['a'], $data, @newl);
}
More information about the MKDoc-commit
mailing list