Alternative Stylesheet for Acronym

出自LemonWiki

跳轉到: 導航, 搜尋

Problem: <abbr>(abbreviation, 縮寫) and <acronym>(首字母縮略字) tags/markup was not work at Mediawiki (bug)

  • <ACRONYM title="High Technology">Hi-Tech</ACRONYM>
  • <ABBR title="World Wide Web">WWW</ABBR>
MediaWiki v.1.6.9



[編輯] Solution

[編輯] Alternative Stylesheet

  • Hi-Tech
 <span title="High Technology" class="acronym">Hi-Tech</span>

 abbr, acronym, span.abbr, span.acronym {
  cursor: help;
  border-bottom: 1px dashed #000;
}


[編輯] Other approach: add link to the wiki node/page

<span title="Personal Knowledge Management" class="acronym" style="cursor: help;border-bottom: 1px dashed #000;">[[PKM]] (?)</span>


todo
  • add link to the wikipedia page

further reading

AD Area