diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/html.php | 2 | ||||
-rw-r--r-- | inc/parser/xhtml.php | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/inc/html.php b/inc/html.php index f506a4a0b..3dd91235a 100644 --- a/inc/html.php +++ b/inc/html.php @@ -421,7 +421,7 @@ function html_revisions(){ print $date; - print ' <img src="'.DOKU_BASE.'lib/images/blank.gif" border="0" width="15" height="11" alt="" /> '; + print ' <img src="'.DOKU_BASE.'lib/images/blank.gif" width="15" height="11" alt="" /> '; print '<a class="wikilink1" href="'.wl($ID).'">'.$ID.'</a> '; diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 9fd31f3b2..d9c750220 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -132,7 +132,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { $this->lastsec = $pos; } - $this->doc .= DOKU_LF.'<a name="'.$this->_headerToLink($text).'"></a><h'.$level.'>'; + $this->doc .= DOKU_LF.'<a name="'.$this->_headerToLink($text).'" id="'.$this->_headerToLink($text).'"></a><h'.$level.'>'; $this->doc .= $this->_xmlEntities($text); $this->doc .= "</h$level>".DOKU_LF; } @@ -182,11 +182,11 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } function underline_open() { - $this->doc .= '<u>'; + $this->doc .= '<em class="u">'; } function underline_close() { - $this->doc .= '</u>'; + $this->doc .= '</em>'; } function monospace_open() { @@ -267,7 +267,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } // output the footnote reference and link, incl. onmouseover for insitu footnote popup - $this->doc .= '<a href="#fn'.$id.'" name="fnt'.$id.'" class="fn_top" onmouseover="fnt(\''.$id.'\', this, event);">'.$id.')</a>'; + $this->doc .= '<a href="#fn'.$id.'" name="fnt'.$id.'" id="fnt'.$id.'" class="fn_top" onmouseover="fnt(\''.$id.'\', this, event);">'.$id.')</a>'; } function listu_open() { |