tut
tut copied to clipboard
doc/tutorial generator for scala
I recently download a project ,and it can't import this plugin by any means, sbt report a `not found` error in https://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/org.tpolecat/tut-core_2.12/0.6.13/ivys/ivy.xml , but I find out the correct address...
because tut depends on scala compiler. e.g. tut does not work with Scala 2.13.1 ``` [error] (run-main-1) java.lang.NoSuchMethodError: scala.tools.nsc.Settings.usejavacp()Lscala/tools/nsc/settings/AbsSettings$AbsSetting; ``` similar issue https://github.com/typelevel/kind-projector/issues/15 Maybe same issue(?) https://github.com/tpolecat/tut/issues/255
In 2.13 comments evidently work differently so something like ```tut // foo 1 + 1 ``` Will report an error and then continue just fine, but it will fail the...
Is it possible to convert whole tutorial/doc to PDF file? It would help to read the pdf file offline and also searching from whole document. For example, I want to...
Adding `scalaVersion in ThisBuild := "2.12.8"` on my `build.sbt` file makes `tut` fail with the following error: ``` [error] (run-main-0) java.lang.NoSuchMethodError: scala.math.Ordering$$anon$10.(Lscala/Function1;Lscala/math/Ordering;)V [error] java.lang.NoSuchMethodError: scala.math.Ordering$$anon$10.(Lscala/Function1;Lscala/math/Ordering;)V [error] at scala.tools.nsc.transform.patmat.Logic$PropositionalLogic$Sym$.(Logic.scala:154) [error] at...
`org.tpolecat` `tut-core` is still published only on a custom Bintray https://bintray.com/tpolecat/maven/tut-core Could you please publish it on Maven Central too? One of the benefits is that it will make life...
I know this isn't something people are clamoring for, but how hard would it be to integrate tut with Gradle rather than SBT? I am on a project currently where...
[Monix.io](https://monix.io) fails compilation starting with Tut 0.6.4. Probably related to this: - https://github.com/tpolecat/tut/issues/65 - https://github.com/tpolecat/tut/pull/220 Here's a sample that is failing: ```scala val coeval = Coeval { println("Effect!") 1 +...
Tut does not work for Scala.js only documentation. I wonder if that's doable at all given that Scala.js does not currently have a RELP. Here is my attempt on scalajs-react:...
This is still very WIP. The idea is to intercept image escape codes (see https://buildkite.com/docs/builds/images-in-log-output) in stdout and then allow references to them later in the docs. When a reference...