]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/CSS_classes_for_links.mdwn
furthermore..
[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 --[[Paweł|ptecza]]
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 >> Hi Charles,
43 >>
44 >> Thanks for the hint! I don't know CSS3 yet :) What modern and popular
45 >> WWW browsers do support it now?
46
47 > If you need to achieve this in IkiWiki itself, I imagine you could create a
48 > plugin which runs in the `format` phase of rendering and search/replaces
49 > specific link patterns.  This should be a fairly simple exercise in regular
50 > expressions.
51 >
52 > --CharlesMauch
53
54 >> I've never written plugin for ikiwiki, but I can try if it's simple job :)
55 >>
56 >> --[[PaweÅ‚|ptecza]]
57
58 > I wouldn't mind adding a _single_ css class to ikiwiki links, but it
59 > would have to be a class added to all internal, not all external, links.
60 > Reason is that there are many ways for external links to get into an
61 > ikiwiki page, including being entered as raw html. The only time ikiwiki
62 > controls a link is when an internal link is added using a WikiLink.
63 > --[[Joey]]