blob: 4f5e611d9613240b1fa0f6eab9030dd09812b355 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
title: New Line to Break Extension
New-Line-to-Break Extension
===========================
Summary
-------
The New-Line-to-Break (`nl2b`) Extension will cause newlines to be treated as
hard breaks; like StackOverflow and [GitHub][] flavored Markdown do.
[Github]: http://github.github.com/github-flavored-markdown/
Example
-------
```pycon
>>> import markdown
>>> text = """
... Line 1
... Line 2
... """
>>> html = markdown.markdown(text, extensions=['markdown.extensions.nl2br'])
>>> print html
<p>Line 1<br />
Line 2</p>
```
Usage
-----
See [Extensions](index.md) for general extension usage, specify
`markdown.extensions.nl2br` as the name of the extension.
This extension does not accept any special configuration options.
|