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

(#32) Handle unformatted lists #33

Merged
merged 1 commit into from Aug 15, 2013

Conversation

tjchaplin
Copy link
Contributor

Without this batch the application doesn't handle li and ol where the html is inline:

<ul><li>item1</li><li>item2</li></ul>

The returned format outputs above as:

* item1* item2

This patch allows for unformatted html lists to be displayed as proper markdown:

* item1
* item2

fixes #32

Without this batch the application doesn't handle li and ol where the html is inline:
```html
<ul><li>item1</li><li>item2</li></ul>
```
The returned format outputs above as:
```
* item1* item2
```

This patch allows for unformatted html lists to be displayed as proper markdown:
```
* item1
* item2
```

fixes neocotic#32
@neocotic
Copy link
Owner

Nice clean fix! Thanks again.

neocotic added a commit that referenced this pull request Aug 15, 2013
@neocotic neocotic merged commit 622f78d into neocotic:master Aug 15, 2013
@tjchaplin
Copy link
Contributor Author

Thanks for pushing this through.

It would be great if you can push the update through to npm also. I am using your library as a dependency for a new project.

Thanks,
Tim

@neocotic
Copy link
Owner

Done. v3.0.1 is now available.

Thanks again.

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

Successfully merging this pull request may close these issues.

Handle unformatted html lists
2 participants