]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/CSS_classes_for_links.mdwn
web commit by KarlMW: link should be xtermin.us, not localhost
[ikiwiki.git] / doc / todo / CSS_classes_for_links.mdwn
1 Hi Joey,
2
3 What do you think about CSS classes for links to display link with icon?
4 You probably know that there are wikis with that feature, for example
5 Moin Moin.
6
7 Here is a piece of `common.css` file grabbed from <http://wiki.openwrt.org>
8 site which is powered by Moin Moin wiki:
9
10     a.www:before {content: url(../img/moin-www.png); margin: 0 0.2em;}
11     a.http:before {content: url(../img/moin-www.png); margin: 0 0.2em;}
12     a.https:before {content: url(../img/moin-www.png); margin: 0 0.2em;}
13     a.file:before {content: url(../img/moin-ftp.png); margin: 0 0.2em;}
14     a.ftp:before {content: url(../img/moin-ftp.png); margin: 0 0.2em;}
15     a.nntp:before {content: url(../img/moin-news.png); margin: 0 0.2em;}
16     a.news:before {content: url(../img/moin-news.png); margin: 0 0.2em;}
17     a.telnet:before {content: url(../img/moin-telnet.png); margin: 0 0.2em;}
18     a.irc:before {content: url(../img/moin-telnet.png); margin: 0 0.2em;}
19     a.mailto:before {content: url(../img/moin-email.png); margin: 0 0.2em;}
20     a.attachment:before {content: url(../img/moin-attach.png); margin: 0 0.2em;}
21     a.badinterwiki:before {content: url(../img/moin-inter.png); margin: 0 0.2em;}
22     a.interwiki:before {content: url(../img/moin-inter.png); margin: 0 0.2em;}
23
24 You can see that they use a lot of CSS classes for links, but only one CSS class
25 for external links is enough for me :) Please look at my example:
26
27     \[[Foo]]                    -> <a href="http://www.mywiki.org/foo.html">Foo</a>
28     \[[Bar|foo/bar]]            -> <a href="http://www.mywiki.org/foo/bar.html">Bar</a>
29     <http://www.gnu.org/>      -> <a class="external" href="http://www.gnu.org/">http://www.gnu.org/</a>
30     [GNU](http://www.gnu.org/) -> <a class="external" href="http://www.gnu.org/">GNU</a>
31     [RMS](mailto:rms@gnu.org)  -> <a href="mailto:rms@gnu.org">RMS</a>
32
33 My best regards,
34
35 --Pawel
36
37 > If you did not already know, you can achieve similar results using CSS3
38 > selectors.  Eg: `a[href="http://www.foobar.com/"] { foobar: css }` or
39 > `a[title~="Mail"] {text-decoration: none; }`.  See
40 > <http://www.w3.org/TR/2001/CR-css3-selectors-20011113/> for a complete list.
41 >
42 > If you need to achieve this in IkiWiki itself, I imagine you could create a
43 > plugin which runs in the `format` phase of rendering and search/replaces
44 > specific link patterns.  This should be a fairly simple exercise in regular
45 > expressions.
46 >
47 > --CharlesMauch