Index: openacs-4/packages/acs-templating/tcl/richtext-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-templating/tcl/richtext-procs.tcl,v diff -u -N -r1.57 -r1.58 --- openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 22 Jan 2018 09:42:31 -0000 1.57 +++ openacs-4/packages/acs-templating/tcl/richtext-procs.tcl 29 Jan 2018 11:03:25 -0000 1.58 @@ -47,14 +47,15 @@ ad_proc -public template::util::richtext::formats {} { Returns a list of valid richtext formats } { - return { text/enhanced text/plain text/html text/fixed-width } + return { text/enhanced text/markdown text/plain text/html text/fixed-width } } ad_proc -public template::util::richtext::format_options {} { Returns a formatting option list } { return [list \ [list [_ acs-templating.Enhanced_Text] text/enhanced] \ + [list [_ acs-templating.Markdown_Text] text/markdown] \ [list [_ acs-templating.Plain_Text] text/plain] \ [list [_ acs-templating.Fixed_width_Text] text/fixed-width] \ [list [_ acs-templating.HTML] text/html]]