fxbois / web-mode

web template editing mode for emacs
https://web-mode.org
GNU General Public License v3.0
1.63k stars 262 forks source link

RFE: support Pandoc HTML template syntax #1305

Open sphakka opened 3 months ago

sphakka commented 3 months ago

Pandoc uses yet another HTML template syntax. No idea if that's based on any know engine. In a nutshell, two syntax variants are possible:

$if(variable)$
This is $variable$
$endif$

or (my preferred one):

${if(variable)}
This is ${variable}
${endif}

Could web-mode support it? It would be awesome :-)