We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d35c782 commit 802f2b4Copy full SHA for 802f2b4
packages/compiler/grammar.pegjs
@@ -307,7 +307,7 @@ simpleTextContent "simple text content"
307
simpleTextPart "simple text part"
308
= !("@for" / "@if") text:$([^<{@]+) {
309
const trimmed = text.trim();
310
- return trimmed ? `'${text}'` : null;
+ return trimmed ? JSON.stringify(trimmed) : null;
311
}
312
313
simpleDynamicPart "simple dynamic part"
sample/src/main.ts
@@ -1,4 +1,3 @@
1
-import '@pixi/layout/devtools';
2
import { bootstrapCanvas } from 'canvasengine';
3
//import App from './test.ce'
4
// Uncomment to test shake directive examples:
0 commit comments