Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Insert blank line? #98

Open
brownieboy opened this issue Jun 9, 2018 · 2 comments
Open

Insert blank line? #98

brownieboy opened this issue Jun 9, 2018 · 2 comments

Comments

@brownieboy
Copy link

brownieboy commented Jun 9, 2018

I'm unable to insert a blank line in my markdown.

I've read through all the issues here, and have tried \n\n followed by two spaces and every other possible combination it seems, but nothing works for me.

Here's what I currently have:
**Title**\nThe blurb\n\n **Second title**\n\nSecond blurb

I want to insert a blank line between "The Blurb" and "Second title", but it always renders like so:
screen shot 2018-06-09 at 2 53 46 pm

@marvinernst
Copy link

I had the same problem. Overwriting the default paragraph style solved the issue for me.

<Markdown
   styles={{
      paragraph: {
      flexWrap: 'wrap',
       flexDirection: 'row',
       alignItems: 'flex-start',
       justifyContent: 'flex-start',
       marginBottom: 32,
       },
    }}
>
  {content}
</Markdown>

@dennisbouwpas
Copy link

@marvinernst Thanks a lot man! That solved my issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants