Skip to content

Commit 0bac71d

Browse files
committed
Fix formatting
1 parent ecf6f60 commit 0bac71d

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

build.scala

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,11 @@ object LaikaCustomizations {
296296
import BlockDirectives.dsl.*
297297
rawBody.evalMap { body =>
298298
KaTeX(body, true).map(katexStr =>
299-
RawContent(NonEmptySet.of("html", "rss"), katexStr, Styles("bulma-has-text-centered"))
299+
RawContent(
300+
NonEmptySet.of("html", "rss"),
301+
katexStr,
302+
Styles("bulma-has-text-centered")
303+
)
300304
)
301305
}
302306
},
@@ -435,7 +439,10 @@ object KaTeX {
435439
ctx.getBindings("js").getMember("katex")
436440
}
437441

438-
def apply(latex: String, displayMode: Boolean = false): Either[String, String] =
442+
def apply(
443+
latex: String,
444+
displayMode: Boolean = false
445+
): Either[String, String] =
439446
synchronized {
440447
val options = Map(
441448
"throwOnError" -> true,

0 commit comments

Comments
 (0)