diff --git a/index.html b/index.html index 9ab3554..021e891 100644 --- a/index.html +++ b/index.html @@ -27,8 +27,8 @@ } A:link { text-decoration:none; color: #000000; } A:visited { text-decoration:none; color: #000000; } - A:hover { text-decoration: underline; } - A:focus { text-decoration: underline; } + A.link:hover { text-decoration: underline; } + A.link:focus { text-decoration: underline; } #filter { width: 100%; } #search { width: 100%; display: table; } .search_span { display: table-cell; text-align: center; vertical-align: middle; @@ -92,20 +92,20 @@ String.prototype.capitalizeFirstLetter = function() { function make_link(md) { var match=linkReg.exec(md); if (match != null) { - return "
  • "+match[1]+""+match[2]+""+match[4]; + return "
  • "+match[1]+""+match[2]+""+match[4]; } match=linkPlain.exec(md); if (match != null) { - return "
  • "+match[1]+""+match[2]+""+match[3]; + return "
  • "+match[1]+""+match[2]+""+match[3]; } - return "
  • "+md } function make_head(c,index="") { var name=c.substring(1).trim(); var head=c.replace(/ /g," "); var id=name.replace(/ /g,"")+"_"+index; - return ''+ + return ''+ '
    '+head+'
    '+ '
    '; }