Skip to content

Commit 84ec0f4

Browse files
committed
Small updates to allow doc publishing
1 parent 93f7c0d commit 84ec0f4

File tree

2 files changed

+347
-241
lines changed

2 files changed

+347
-241
lines changed

OpGenerator/OpGenerator.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ void Comment (string text)
186186
return;
187187
var lines = text.Split ('\n');
188188
foreach (var line in lines) {
189-
p ($"/// {line}");
189+
var line2 = line.Replace ("<", "&lt;").Replace (">", "&gt;").Replace ("&", "&amp;");
190+
p ($"/// {line2}");
190191
}
191192
}
192193

0 commit comments

Comments
 (0)