mdoc icon indicating copy to clipboard operation
mdoc copied to clipboard

Typechecked markdown documentation for Scala

Results 73 mdoc issues
Sort by recently updated
recently updated
newest added

It seems that somehow when using for example akka in worksheets the actual typesafe config lib that is being loaded is coming from mdoc, not from akka. Which means that...

Before, mdoc would instantiate and execute `PostModifier` instances without any indication when these terminated their processing on all documents. This means that if we created some resources in these PostModfiers,...

I'm trying to cross build documentation for a library built against multiple versions of http4s and I'd like to be able to write code for all http4s versions within the...

I just ran into this: ``` sbt:scala2plantuml> docs/mdoc [info] running mdoc.Main info: Compiling 1 file to /Users/jason/source/scala2plantuml mdoc.internal.cli.FileException: /Users/jason/source/scala2plantuml/docs/README.md Exception: sbt.TrapExitSecurityException thrown from the UncaughtExceptionHandler in thread "run-main-b" [success] Total...

spree

I have the following code to compile a website, including markdown files in a folder called `tut`: ```scala val settings = mdoc.MainSettings().withIn(java.nio.file.Paths.get("tuts")) mdoc.Main.process(settings) ``` The _first_ file in the list...

I'm analysing my dependencies in sbt and noticed that mdoc is pulling in `io.undertow:undertow-core:2.2.3.Final` and a whole bunch of other stuff. I'm assuming that this is for the `--watch` command...

I have a project that utilizes Tut and I am trying to update it to use Mdoc. Project compiles when using Tut but fails after updating to mdoc. The error...

Hi! We have a code block in our documentation that provides some example configuration for a 3rd party SBT plugin: ```scala import sbtlighter._ LighterPlugin.disable lazy val EMRSettings = LighterPlugin.baseSettings ++...

Hello, I am getting a funny behavior with comments at the end of a line. For example, consider this: ```scala mdoc:compile-only // a val a = 10 val b =...

**TLDR**: I would like to invoke some external command every time `mdoc` finishes generating files while in file watching mode. ## Motivation: I use mdoc to generate typesafe markdown files,...