Re: Markdown issue

2013-03-05 Thread Joseph Schaefer
See http://www.apache.org/dev/cmsref#markdown in particular the elementid plugin. Sent from my iPhone On Mar 5, 2013, at 4:54 PM, Juan Pablo Santos Rodríguez wrote: > Hi! > > @Manos: that's great! didn't thought of that, but it absolutely solves the > problem > > @Joseph: that looks interes

Re: Markdown issue

2013-03-05 Thread Juan Pablo Santos Rodríguez
Hi! @Manos: that's great! didn't thought of that, but it absolutely solves the problem @Joseph: that looks interesting too, could you provide a link to that extension? thx a lot for the tips & pointers cheers, juan pablo On Tue, Mar 5, 2013 at 7:56 PM, Joseph Schaefer wrote: > In the custom

Re: Markdown issue

2013-03-05 Thread Joseph Schaefer
In the custom extension we use there is code that lets you select a CSS classname by adding {.classname} to the end of the text area. Sent from my iPhone On Mar 5, 2013, at 1:48 PM, "Emmanouil Batsis (Manos)" wrote: > > IF I understand you correctly you might be able to simply tackle the issu

Re: Markdown issue

2013-03-05 Thread Emmanouil Batsis (Manos)
IF I understand you correctly you might be able to simply tackle the issue using the right CSS selector to apply styles for external links. If links pointing inside the site use URLs not starting with "http" you might want to do something like the following to match external links: a[href^=

Re: Markdown issue

2013-03-05 Thread Juan Pablo Santos Rodríguez
Hi, @Ioan: that was exactly what I was trying to avoid, it feels a bit cumbersome to type the whole link instead something like [text][1](.whatevercssclass) or similar @Shane: yep, had checked also that link, unfortunately, "Special attribute blocks can be used only with headers fenced code block

Re: Markdown issue

2013-03-04 Thread Shane Curcuru
See if this helps: http://michelf.ca/projects/php-markdown/extra/#spe-attr Which is linked from: http://www.apache.org/dev/cmsref.html#markdown - Shane On 3/4/2013 6:46 PM, Juan Pablo Santos Rodríguez wrote: Hi all, probably is a dumb issue and I'm missing something obvious, but so far,

Re: Markdown issue

2013-03-04 Thread Ioan Eugen Stan
Hello Juan Pablo, Just inline HTML. Markdown allows it. [1] [1] http://daringfireball.net/projects/markdown/syntax#html Regards, -- Ioan Eugen Stan - To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org For additi