Skip to content

Commit a257ca7

Browse files
committed
Word converter updates
- Update the maximum line length to 81 (which appears to be okay) - Update the front page template version to 7
1 parent 790cec2 commit a257ca7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tools/MarkdownConverter/Converter/MarkdownSourceConverter.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@ public class MarkdownSourceConverter
2020
{
2121
/// <summary>
2222
/// The maximum code line length that's allowed without generating a warning.
23+
/// (80 would be normal, but 81 appears to be okay, and avoids a couple of difficult line breaks.)
2324
/// </summary>
24-
public const int MaximumCodeLineLength = 80;
25+
public const int MaximumCodeLineLength = 81;
2526

2627
private const int InitialIndentation = 540;
2728
private const int ListLevelIndentation = 360;

tools/MarkdownConverter/template.docx

121 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)