# HG changeset patch # User souliane # Date 1392214788 -3600 # Node ID c00d90bce2521b9f413ab5f932c68c3ca4111d32 # Parent 2d901b7fa861e52219f7f554d773ea08024aa217 tools: composition RICH_FORMATS constant has been renamed to RICH_SYNTAXES diff -r 2d901b7fa861 -r c00d90bce252 frontends/src/tools/composition.py --- a/frontends/src/tools/composition.py Fri Feb 07 22:17:06 2014 +0100 +++ b/frontends/src/tools/composition.py Wed Feb 12 15:19:48 2014 +0100 @@ -38,12 +38,12 @@ "horizontalrule": {"tip": "Horizontal rule", "icon": "media/icons/dokuwiki/toolbar/16/hr.png"} } -# Define here your rich text formats, the key must match the ones used in button. +# Define here your rich text syntaxes, the key must match the ones used in button. # Tupples values must have 3 elements : prefix to the selection or cursor # position, sample text to write if the marker is not applied on a selection, # suffix to the selection or cursor position. # FIXME: must not be hard-coded like this -RICH_FORMATS = {"markdown": {"bold": ("**", "bold", "**"), +RICH_SYNTAXES = {"markdown": {"bold": ("**", "bold", "**"), "italic": ("*", "italic", "*"), "code": ("`", "code", "`"), "heading": ("\n# ", "Heading 1", "\n## Heading 2\n"),