Ólafur Páll Geirsson

Results 361 comments of Ólafur Páll Geirsson

Can you please confirm if you can reproduce with the latest version of mdoc? We recently inlined the parts of pprint in order to support Dotty, so this issue may...

Thank you for confirming. It looks like pprint was only inlined for Scala 3, and pprint is still an external dependency on Scala 2.

That’s good to know. Is there a way to support both JUnit 5 and 4 at the same time?

I've started working on an upgrade to JUnit 5 and hope to get a PR out soon. I opened an issue for IntelliJ to confirm what changes are needed to...

Thank you for reporting! Can you elaborate on the expected behavior of such a feature? Would it be enabled through a test option? I'm not opposed to adding such an...

Thank you for reporting! You can enable compiler plugins with the `$scalac` magic import, see example here https://github.com/scalameta/mdoc/blob/24193c5ab29719cab776effd626f15aeaf8e5f05/tests/unit/src/test/scala/tests/imports/ScalacSuite.scala#L11 You can try to fetch the jar locally first ``` ❯ cs...

Have you tried the flag —markdown-extensions=mdx? Everything in that settings file can be configured via the command line or sbt plugin

Thank you for reporting! Big 👍 from me. Would you be interested in contributing this feature? One question: how should the start/end methods work under --watch mode? You might be...

Example: the `mdoc:js` modifier is a `PreModifier` that collects all `mdoc:js` code fences during `process` https://github.com/scalameta/mdoc/blob/3afbd52afae896e975701547d94779c02a8aedbd/mdoc-js/src/main/scala-2.12/mdoc/modifiers/JsModifier.scala#L219 During `postProcess`, we use the Scala.js compiler to link a JavaScript file and add...

One thing we can do it several callbacks for different events 🤔 * add `onExit`: before mdoc is shutting down * add `onWatchIterationEnd`: after completing compilation after a single --watch...