Skip to content

Commit

Permalink
Make Markdown export code compatible to the parser on gitlab.com, by …
Browse files Browse the repository at this point in the history
…using 3 dashes instead of 1, below header columns. See http://www.heidisql.com/forum.php?t=22991
  • Loading branch information
ansgarbecker committed Dec 25, 2016
1 parent 5312a37 commit d75ae73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/exportgrid.pas
Expand Up @@ -667,7 +667,7 @@ procedure TfrmExportGrid.btnOKClick(Sender: TObject);
Col := Grid.Header.Columns.GetFirstVisibleColumn;
while Col > NoColumn do begin
if Col <> ExcludeCol then begin
Header := Header + '-';
Header := Header + '---';
if GridData.DataType(Col).Category in [dtcInteger, dtcReal] then
Header := Header + ':';
Header := Header + Separator;
Expand Down

0 comments on commit d75ae73

Please sign in to comment.