You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Opening this issue for reference - some missing parts that were not handled in #323:
args and ctrl can have only "value" inside double quotes, not inside single quotes unlike other attribs
HTML syntax part 3 #323 introduced export-module which when parsed sets node.isExportModule = true for now in the syntax tree but nothing more than that (it doesn't perform the exporting functionality)
no checking for multiple conflicting exports, export-module etc
export can have value <template id=foo export=bar> and then block.modifier.exportName is available (null if not set), but nothing is done with it further, it's just parsed (template is still exported as foo instead of bar)
The text was updated successfully, but these errors were encountered:
Opening this issue for reference - some missing parts that were not handled in #323:
args
andctrl
can have only"value"
inside double quotes, not inside single quotes unlike other attribsexport-module
which when parsed setsnode.isExportModule = true
for now in the syntax tree but nothing more than that (it doesn't perform the exporting functionality)export
can have value<template id=foo export=bar>
and thenblock.modifier.exportName
is available (null
if not set), but nothing is done with it further, it's just parsed (template is still exported asfoo
instead ofbar
)The text was updated successfully, but these errors were encountered: