mvertes / txt2man

txt2man converts text to man page
GNU General Public License v2.0
57 stars 10 forks source link

Issue with subsection in latest head #37

Open thmo opened 2 years ago

thmo commented 2 years ago

This input

DESCRIPTION
  GENERAL
    Lorem ipsum dolor sit amet, consectetur
    adipiscing elit, sed do eiusmod tempor
    incididunt ut labore et dolore magna aliqua.

    Key  value

    AnotherKey  value2

is rendered in 1.7.1 nicely as

untitled(17 February 2022)                untitled(17 February 2022)

DESCRIPTION
   GENERAL
       Lorem  ipsum dolor sit amet, consectetur adipiscing elit, sed
       do eiusmod tempor incididunt ut labore et dolore  magna  ali‐
       qua.

       Key    value

       AnotherKey
              value2

                                          untitled(17 February 2022)

but in be89fb4 as

untitled(17 February 2022)                untitled(17 February 2022)

DESCRIPTION
       GENERAL  Lorem  ipsum  dolor sit amet, consectetur adipiscing
       elit, sed do eiusmod tempor incididunt ut  labore  et  dolore
       magna aliqua.

              Key    value

              AnotherKey
                     value2

                                          untitled(17 February 2022)

which doesn't look correct to me.