Saneef Ansari
Saneef Ansari
When I reuse an `registry`, in subsequent calls to `convert()`, the registered extensions don't work. See the sample code, which is based on [an example from docs](https://docs.asciidoctor.org/asciidoctor.js/latest/extend/extensions/register/#register-one-or-more-extensions): ```js const asciidoctor...
Here is a sample Svelte component file: ```svelte label { @apply relative block pl-6 my-2; } .wrapper { @apply absolute left-0 inset-y-0 flex items-center; } export let checked; export let...
Here is a case where I don't want extra space. ```html function dateToAttribute(date) { return new Date(date).toISOString(); } function readableDate(date, locale) { return new Date(date).toLocaleString(locale || "en-GB"); } ``` I'm...
Currently, the plug will transform all `` in an Eleventy project into `` tags. This may not be desirable for some images: - ...that are used for UI. After respimg...
The [schema-relative](https://url.spec.whatwg.org/#scheme-relative-special-url-string) or protocol relative URLs are common while porting old sites to Eleventy. ```html ``` Presently, when using such URL, `new Image()` gives the error: ```sh Error: ENOENT: no...