Git fork

Merge branch 'kh/doc-column-markup-fix'

Doc updates.

* kh/doc-column-markup-fix:
doc: column: fix blank lines around block delimiters

+3 -3
+3 -3
Documentation/git-column.adoc
··· 50 -------- 51 52 Format data by columns: 53 - + 54 ------------ 55 $ seq 1 24 | git column --mode=column --padding=5 56 1 4 7 10 13 16 19 22 ··· 59 ------------ 60 61 Format data by rows: 62 - + 63 ------------ 64 $ seq 1 21 | git column --mode=row --padding=5 65 1 2 3 4 5 6 7 ··· 68 ------------ 69 70 List some tags in a table with unequal column widths: 71 - + 72 ------------ 73 $ git tag --list 'v2.4.*' --column=row,dense 74 v2.4.0 v2.4.0-rc0 v2.4.0-rc1 v2.4.0-rc2 v2.4.0-rc3
··· 50 -------- 51 52 Format data by columns: 53 + 54 ------------ 55 $ seq 1 24 | git column --mode=column --padding=5 56 1 4 7 10 13 16 19 22 ··· 59 ------------ 60 61 Format data by rows: 62 + 63 ------------ 64 $ seq 1 21 | git column --mode=row --padding=5 65 1 2 3 4 5 6 7 ··· 68 ------------ 69 70 List some tags in a table with unequal column widths: 71 + 72 ------------ 73 $ git tag --list 'v2.4.*' --column=row,dense 74 v2.4.0 v2.4.0-rc0 v2.4.0-rc1 v2.4.0-rc2 v2.4.0-rc3