Janosh Riebesell
Janosh Riebesell
I see. But what’s the alternative?
Would it make sense to have both a sync and an async renderer (the latter being undefined by default) and only using the async one if the user defined it?...
You mean like this `marked(mdStr, { async: true })`? And then something like ```js try { // ... if (opt.async) return await Parser.parse(tokens, opt); else return Parser.parse(tokens, opt); } catch...
Just stumbled over this in the final 1.71 release. Like @LeanderD said, this also breaks scrolling in terminal. 
@vpetrovykh Thanks for this advice. Unfortunately, it's not currently usable with `black` formatting since `black` automatically lower cases r-string prefixes. I opened [black#1244](https://github.com/psf/black/issues/1244) to discuss this.
@elprans IIUC, this has other effects besides preventing r-string prefixes from being lower cased (such as not converting single to double quotes). Btw, just tested it and it works with...
Any update on this? I believe my builds are crashing due to a similar problem also involving symlinks: ```sh 10:01:19 AM: > ENOENT: no such file or directory, stat '/opt/build/repo/site/static/assets'...
@erezrokah Thanks, will do.
Always great to see more things migrating to ESM! Has this PR fallen under the radar?
I'm not familiar with the code base so I could only take over if it's minor stuff. What's left to do beside merge conflict resolution and addressing the comment by...