diff options
author | wei <> | 2007-05-07 04:17:37 +0000 |
---|---|---|
committer | wei <> | 2007-05-07 04:17:37 +0000 |
commit | eab6bb13b9efb3e1c6d725368368de4d74b00946 (patch) | |
tree | 57aa3462b6f18ad190527483e753dc148971bc63 /buildscripts/texbuilder/Page2Tex.php | |
parent | e91ac8550a4e6dfa255874860f108935841c16f6 (diff) |
Update Active Record docs.
Diffstat (limited to 'buildscripts/texbuilder/Page2Tex.php')
-rw-r--r-- | buildscripts/texbuilder/Page2Tex.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/buildscripts/texbuilder/Page2Tex.php b/buildscripts/texbuilder/Page2Tex.php index 7ee4a171..ad712183 100644 --- a/buildscripts/texbuilder/Page2Tex.php +++ b/buildscripts/texbuilder/Page2Tex.php @@ -174,7 +174,7 @@ class Page2Tex //text modifiers
$html = preg_replace('/<(b|strong)[^>]*>([^<]*)<\/(b|strong)>/', '\textbf{$2}', $html);
- $html = preg_replace('/<i[^>]*>([^<]*)+?<\/i>/', '\emph{$1}', $html);
+ $html = preg_replace('/<i [^>]*>([^<]*)+?<\/i>/', '\emph{$1}', $html);
$html = preg_replace_callback('/<tt>([^<]*)<\/tt>/', array($this,'texttt'), $html);
//links
@@ -213,6 +213,8 @@ class Page2Tex $html = preg_replace('/<!--(.*)-->/', '', $html);
$html = preg_replace('/<div class="last-modified">((.|\n)*?)<\/div>/', '', $html);
+ //since
+ $html = preg_replace('/<com:SinceVersion[^>]+>/', '', $html);
$html = html_entity_decode($html);
|