Search code examples
githubmarkdowngithub-flavored-markdownreadme

New lines inside paragraph in README.md


When editing an issue and clicking Preview the following markdown source:

a
b
c

shows every letter on a new line.

However, it seems to me that pushing similar markdown source structure in README.md joins all the letters on one line.

I'd like the new lines preserved in the README.md in this project: https://github.com/zoran119/simple-read-only-test

Any idea how?


Solution

  • Interpreting newlines as <br /> used to be a feature of Github-flavored markdown, but the most recent help document no longer lists this feature.

    Fortunately, you can do it manually. The easiest way is to ensure that each line ends with two spaces. So, change

    a
    b
    c
    

    into

    a__
    b__
    c
    

    (where _ is a blank space).

    Or, you can add explicit <br /> tags.

    a <br />
    b <br />
    c