Re: Ordered lists broken into columns restart numbering

2021-09-07 Thread Juan Pablo Santos Rodríguez
Hi Gary, there's a multi-column style [#1] that can be combined with some in-place css magic to achieve that: %%add-css .columns { counter-reset: mycounter } .columns ol { list-style: none; } .columns ol li:before { counter-increment: mycounter; content: counter(mycounter) ". "; } /% #qw

Re: Ordered lists broken into columns restart numbering

2021-09-07 Thread Gary Kephart
Thanks! That worked. :) Gary On 9/7/2021 5:48 AM, Juan Pablo Santos Rodríguez wrote: Hi Gary, there's a multi-column style [#1] that can be combined with some in-place css magic to achieve that: %%add-css .columns { counter-reset: mycounter } .columns ol { list-style: none; } .columns o

ImageMapPlus

2021-09-07 Thread Gary Kephart
Is ImageMapPlus working for this version of JSPWiki? I followed the directions here: https://www.ecyrd.com/JSPWiki/wiki/ImageMapPlus but got the following error. Thanks,   Gary JSPWiki has detected an error Error Message Failed to link org/nascif/jspwiki/plugin/imagemapplus/ImageMapP

Re: ImageMapPlus

2021-09-07 Thread Ulf Dittmer
Given "com/ecyrd/jspwiki/plugin/WikiPlugin", it can't work with current JSPWiki versions. These days, the corresponding class would be org.apache.wiki.api.plugin.WikiPlugin. So you'd have to modify the source code to use the org.apache.wiki package and classes rather than com.ecyrd.jspwiki. I don't