Skip to content

Commit

Permalink
Fix defcustom type of markdown-css-paths
Browse files Browse the repository at this point in the history
Closes GH-276.
  • Loading branch information
jrblevin committed Oct 30, 2017
1 parent c25f394 commit 736cb7e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@
inaccessible subdirectory. ([GH-261][])
- Fix `markdown-inline-code-face`'s `:inherit` attribute.
([GH-252][])
- Fix type of customizable `markdown-css-paths` variable.
([GH-276][])

[gh-171]: https://github.com/jrblevin/markdown-mode/issues/171
[gh-216]: https://github.com/jrblevin/markdown-mode/issues/216
Expand All @@ -60,6 +62,7 @@
[gh-266]: https://github.com/jrblevin/markdown-mode/issues/266
[gh-272]: https://github.com/jrblevin/markdown-mode/issues/272
[gh-274]: https://github.com/jrblevin/markdown-mode/pull/274
[gh-276]: https://github.com/jrblevin/markdown-mode/issues/276

# Markdown Mode 2.3

Expand Down
2 changes: 1 addition & 1 deletion markdown-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -1335,7 +1335,7 @@ Math support can be enabled, disabled, or toggled later using
(defcustom markdown-css-paths nil
"URL of CSS file to link to in the output XHTML."
:group 'markdown
:type 'list)
:type '(repeat (string :tag "CSS File Path")))

(defcustom markdown-content-type ""
"Content type string for the http-equiv header in XHTML output.
Expand Down

0 comments on commit 736cb7e

Please sign in to comment.