Project

General

Profile

Feature #20620

Updated by Etienne Massip over 8 years ago

(I looked in trunk for a solution and in the issues for a request but couldn't find anything, I'm sorry if this is a duplicate or already solved) 

 We (plan.io) currently add 2 buttons to the wiki toolbar, one as described in #14937 and another from a plugin, which insert markup-sensitive content to the edited text. Those buttons are added from included javascript files, there currently is no easy way to find out which markup is selected from the js. 

 Knowing the markup used in the js would allow setting the correct markup/function for the added buttons directly in the js. 

 While there are a few other possibilities to achieve this (load different js files from the plugins depending on the selected markup, this adds complexity on the js side either because of duplication, loading 2 files for the markup-specific and common code, and so on). 

 The simplest change we could come up with would be to add a line similar to: 

 <pre><code class="ruby"> 
 javascript_tag("var wikiMarkup = 'textile';") + 
 </code></pre> </code><pre> 

 to source:/tags/3.1.0/lib/redmine/wiki_formatting/textile/helper.rb#L35, the same for markdown. 

 Is this something that could be added to Redmine, or how should markup-dependent javascript be handled? Thanks.

Back