@@ -62,28 +62,40 @@ protected SourceFormat()
6262 /// <value>The number of space characters to substitute for tab
6363 /// characters. The default is <b>4</b>, unless overridden is a
6464 /// derived class.</value>
65- public byte TabSpaces { get ; set ; }
65+ public byte TabSpaces
66+ {
67+ get ; set ;
68+ }
6669
6770 /// <summary>
6871 /// Enables or disables line numbers in output.
6972 /// </summary>
7073 /// <value>When <b>true</b>, line numbers are generated.
7174 /// The default is <b>false</b>.</value>
72- public bool LineNumbers { get ; set ; }
75+ public bool LineNumbers
76+ {
77+ get ; set ;
78+ }
7379
7480 /// <summary>
7581 /// Enables or disables alternating line background.
7682 /// </summary>
7783 /// <value>When <b>true</b>, lines background is alternated.
7884 /// The default is <b>false</b>.</value>
79- public bool Alternate { get ; set ; }
85+ public bool Alternate
86+ {
87+ get ; set ;
88+ }
8089
8190 /// <summary>
8291 /// Enables or disables the embedded CSS style sheet.
8392 /// </summary>
8493 /// <value>When <b>true</b>, the CSS <style> element is included
8594 /// in the HTML output. The default is <b>false</b>.</value>
86- public bool EmbedStyleSheet { get ; set ; }
95+ public bool EmbedStyleSheet
96+ {
97+ get ; set ;
98+ }
8799
88100 /// <overloads>Transform source code to HTML 4.01.</overloads>
89101 ///
@@ -141,7 +153,10 @@ public static string GetCssString()
141153 /// <summary>
142154 /// The regular expression used to capture language tokens.
143155 /// </summary>
144- protected Regex CodeRegex { get ; set ; }
156+ protected Regex CodeRegex
157+ {
158+ get ; set ;
159+ }
145160
146161 /// <summary>
147162 /// Called to evaluate the HTML fragment corresponding to each
0 commit comments