branch: elpa/web-mode commit 0c83581d1e93d1d802c730a1d5e90cd1c740e1b2 Author: fxbois <fxb...@gmail.com> Commit: fxbois <fxb...@gmail.com>
add pandoc as synonym of marko #1305 --- issues/1308.jsx | 15 +++++++++++++++ web-mode.el | 6 +++--- 2 files changed, 18 insertions(+), 3 deletions(-) diff --git a/issues/1308.jsx b/issues/1308.jsx new file mode 100644 index 0000000000..1edaf34747 --- /dev/null +++ b/issues/1308.jsx @@ -0,0 +1,15 @@ +function App() { + return ( + <div> + <div></div> + </div> + ); +} + +function App() { + return ( + <div> + <div/> + </div> + ); +} diff --git a/web-mode.el b/web-mode.el index 870cd549c9..645e33ad2e 100644 --- a/web-mode.el +++ b/web-mode.el @@ -2,7 +2,7 @@ ;; Copyright 2011-2024 François-Xavier Bois -;; Version: 17.3.19 +;; Version: 17.3.20 ;; Author: François-Xavier Bois ;; Maintainer: François-Xavier Bois <fxb...@gmail.com> ;; Package-Requires: ((emacs "23.1")) @@ -23,7 +23,7 @@ ;;---- CONSTS ------------------------------------------------------------------ -(defconst web-mode-version "17.3.19" +(defconst web-mode-version "17.3.20" "Web Mode version.") ;;---- GROUPS ------------------------------------------------------------------ @@ -1006,7 +1006,7 @@ Must be used in conjunction with web-mode-enable-block-face." ("json-t" . ()) ("jsp" . ("grails")) ("mako" . ()) - ("marko" . ()) + ("marko" . ("pandoc")) ("mason" . ("poet")) ("lsp" . ("lisp")) ("mojolicious" . ())