I got reST support running by only changing 3 lines, 
that's really cool!

filter.py (sample filter)
---

from clean_writer import rest2html

class AlignImgTop(Filter):

    def run(self, text, card, fact_key, **render_args):
        #return text.replace("<img", "<img align=\"top\"")
        # undo changes from "escape_to_html" filter
        text =  text.replace("<br>", "\n")
        print text
        return rest2html(text)
---


* is there a file that I can use to start mnemosyne 
to start debuging in my IDE (instead of unsing make)?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"mnemosyne-proj-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msg/mnemosyne-proj-users/-/pD1fu8EE82YJ.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to