Commit f7a24ba
committed
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.1 parent f1252d8 commit f7a24ba
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
0 commit comments