Roy Revelt

Results 139 comments of Roy Revelt

I patched the @linhe0x0 PR and raised it on https://github.com/eriklharper/postcss-nested-import/pull/15 — please help to test it — that one was carved off the latest v1.1.0 — thank you

We've just released v0.2.0. Does anybody object if we close this issue?

hi Mike! I'm one of maintainers of this plugin. Thank you for raising this, I think we have enough info to start working. I'll keep you updated. If all goes...

hi all, try v1 that has been just released, we renamed the handle to `@nested-import`

+1 I edited my PDF to put `37(6)` using Affinity Designer. Reexported as PDF again, looks perfect.

https://github.com/remix-run/remix/issues/1618 might be related to this

it's because root package.json is missing `types` key, it has to point to the type defs file's path, for example, see https://github.com/codsen/codsen/blob/main/packages/string-strip-html/package.json#L40 (for legacy) and couple lines above, ESM way...

Remark parser assumes `_[Italic link](../_link_including_underscores_` is emphasis and `.md)_` is text. Try yourselves: https://astexplorer.net/ (set markdown as parser) But shouldn't underscores be escaped anyway? For example, escaped `_[Italic link](../_link_including_underscores\_.md)_` parses...

To add 2p, the unescaped input broke even GitHub syntax highlighter, it's visible on a Stylus GitHub Dark theme (v1.21.52): ![markdown_bug](https://user-images.githubusercontent.com/8344688/57713513-86b30180-766a-11e9-8ae6-b186da43dd37.png)

just to add 2p, for example, currently, this missing `page` `await` is not flagged up: ```js test('has title', async ({ page }) => { page.goto('https://playwright.dev/'); // await is missing! //...