]> sipb.mit.edu Git - ikiwiki.git/blob - doc/todo/CSS_classes_for_links.mdwn
inline: Add pagenames parameter that can be used to list a set of pages to inline...
[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 >>> Safari supports it. Firefoz&Co support most of it. IE6 did not, but IE7
48 >>> supports a fair part of CSS3, ans is said to support selectors.
49 >>>
50 >>> Example on how to use selectors here: http://www.kryogenix.org/days/2002/08/30/external
51 >>>
52 >>> I also think this should be in an external plugin, not in ikiwiki.
53 >>>
54
55 I find CSS3 support still spotty...  Here are some notes on how to do this in IkiWiki with jQuery: <http://iki.u32.net/setup/External_Links> --[[sabr]]
56
57 > If you need to achieve this in IkiWiki itself, I imagine you could create a
58 > plugin which runs in the `format` phase of rendering and search/replaces
59 > specific link patterns.  This should be a fairly simple exercise in regular
60 > expressions.
61 >
62 > --CharlesMauch
63
64 >> I've never written plugin for ikiwiki, but I can try if it's simple job :)
65 >>
66 >> --[[PaweÅ‚|ptecza]]
67
68 > I wouldn't mind adding a _single_ css class to ikiwiki links, but it
69 > would have to be a class added to all internal, not all external, links.
70 > Reason is that there are many ways for external links to get into an
71 > ikiwiki page, including being entered as raw html. The only time ikiwiki
72 > controls a link is when an internal link is added using a WikiLink.
73 >
74 > (Note that tags get their own special
75 > [[rel_attribute|rel_attribute_for_links]] now that CSS can use.)
76
77 > --[[Joey]]