Changeset 686
- Timestamp:
- 09/03/10 16:25:18 (21 months ago)
- Files:
-
- 1 modified
-
trunk/src/parser/docparrstmarkupparser__define.pro (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/parser/docparrstmarkupparser__define.pro
r685 r686 261 261 endif 262 262 263 if ( lines[l] eq string(replicate(byte('-'), lastLineLength))) then begin263 if (strmid(lines[l], lastLineStart) eq string(replicate(byte('-'), lastLineLength - lastLineStart))) then begin 264 264 header_level = 2 265 265 endif 266 266 267 if ( lines[l] eq string(replicate(byte('~'), lastLineLength))) then begin267 if (strmid(lines[l], lastLineStart) eq string(replicate(byte('~'), lastLineLength - lastLineStart))) then begin 268 268 header_level = 3 269 269 endif
