Taggic / IssueTracker

issue tracking as dokuwiki plugin
http://www.fristercons.de/fcon/doku.php?id=issuetracker:descr
8 stars 2 forks source link

Markdown formatter? #17

Open alexbevi opened 9 years ago

alexbevi commented 9 years ago

Just curious what the best way to get issue content to be rendered from markdown would be

Taggic commented 9 years ago

I'm sorry. I do not understand your question or issue. Could you please spend a few more explaining words to describe your issue/request ? br, Taggic

Am 25.02.2015 um 14:56 schrieb Alex Bevilacqua:

Just curious what the best way to get issue content to be rendered from markdown would be

alexbevi commented 9 years ago

For example, if I want to enter a code block as a comment, i would have to do

[code]
(document).ready(function(){
    $("#btn1").click(function(){
        $("#test1").text(function(i, origText){
            return "Old text: " + origText + " New text: Hello world! (index: " + i + ")"; 
        });
    });
});
[/code]

I'm using the markdowku to allow dokuwiki to parse markdown, and would like to have my issuetracker content written in markdown as well.

As it stands, if I were to enter the above as markdown:

```
(document).ready(function(){
    $("#btn1").click(function(){
        $("#test1").text(function(i, origText){
            return "Old text: " + origText + " New text: Hello world! (index: " + i + ")"; 
        });
    });
});
```

Then the issuetracker would not parse the markdown to html as other dokuwiki pages would.

Does that help?