Skip to content

Commit

Permalink
Fix customization types
Browse files Browse the repository at this point in the history
Fixes #254
  • Loading branch information
phst authored and jrblevin committed Sep 23, 2017
1 parent 449a00d commit e391581
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions markdown-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ For example, a standalone Markdown previewer. This command will
be called with a single argument: the filename of the current
buffer."
:group 'markdown
:type 'string)
:type '(choice file (const :tag "None" nil)))

(defcustom markdown-hr-strings
'("-------------------------------------------------------------------------------"
Expand All @@ -1064,7 +1064,7 @@ horizontal rule. Strings should be listed in decreasing order of
prominence (as in headings from level one to six) for use with
promotion and demotion functions."
:group 'markdown
:type 'list)
:type '(repeat string))

(defcustom markdown-bold-underscore nil
"Use two underscores when inserting bold text instead of two asterisks."
Expand Down Expand Up @@ -1169,7 +1169,7 @@ cause lag when typing on slower machines."
"telnet" "tip" "urn" "vemmi" "wais")
"Link types for syntax highlighting of URIs."
:group 'markdown
:type 'list)
:type '(repeat (string :tag "URI scheme")))

(defcustom markdown-url-compose-char
(cond
Expand Down

0 comments on commit e391581

Please sign in to comment.