You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
macros.md: Fix htmlized variant of first source code example
Confusingly, the last part of the first source code example would
appear as
def showExpr(expr: Expr[Boolean])(using Quotes): Expr[String] =
'{ "
" }
in the htmlized version of the markdown documentation source. Which
reads as follows:
def showExpr(expr: Expr[Boolean])(using Quotes): Expr[String] =
'{ "<some source code>" } // Better implementation later in this document
This seems to be cause by the usage of angle brackets. Also note that
the code comment does not appear in the htmlized output.
0 commit comments