Sergey Chikuyonok

Results 456 comments of Sergey Chikuyonok

Yes, Emmet should autocomplete in plain HTML files. And if users build web-sites with frameworks, your change will force them to always remove `` they don’t need. Also, its implied...

In SvelteKit, the entry HTML page doesn’t contain any stylesheet references. As well as Vite entry page. But my claim is not about frameworks, it’s about good defaults for most...

Should be fixed in v1.0.4

I don’t quite understand what you’re trying to do. If you want to extract only a subset of menu, you can base URL to `generateMenu()` template data method, e.g. `generateMenu('/product1/topic1/')`

You can simply check `state` property of menu items to decide if it should be rendered or not: https://github.com/sergeche/docpad-plugin-menu#how-it-works

@timaschew you can find element with `state == "parent"` and render its children only

Will check this out. Do you use standard Vue syntax highlighter?

Can you provide Emmet config you use for Vue editor? Seems to work fine for me

Good point! Was trying to do a quick implementation of click to expand preview, but it didn’t work. Will try to figure out how a working solution

Unfortunately, I didn’t found a way properly detect a _name_ of current syntax from document. So far I’, detecting syntax by checking language facet, which requires module import: https://github.com/emmetio/codemirror6-plugin/blob/main/src/lib/syntax.ts#L86-L96 Thus,...