diff options
| author | Grégoire Duchêne <gduchene@fastmail.net> | 2011-02-20 15:02:16 +0100 |
|---|---|---|
| committer | Grégoire Duchêne <gduchene@fastmail.net> | 2011-02-20 15:02:16 +0100 |
| commit | 7acf15c1f0623f157e6abdf4a9bff5b050add967 (patch) | |
| tree | d9d2dc69793c0a2e0f842228fdd776bd76767c69 /src/generators | |
| parent | 02f387c216ca27abd3cad5f7d9043abd9e7ae168 (diff) | |
Forced line break support added.
Diffstat (limited to 'src/generators')
| -rw-r--r-- | src/generators/latex/text_g.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/generators/latex/text_g.cpp b/src/generators/latex/text_g.cpp index e65d80d..cdebe9f 100644 --- a/src/generators/latex/text_g.cpp +++ b/src/generators/latex/text_g.cpp @@ -32,7 +32,7 @@ latex::text_g::text_g() : text_g::base_type(text_) { | &uint_(QUOTE) << L"``" << +text_ << L"''" | &uint_(SUB) << L"_{" << +text_ << '}'; - atom_ = &uint_(NBSP) << '~'; + atom_ = &uint_(NBSP) << '~' | &uint_(NEWLINE) << L"\\\\" << eol; pstext_ = &uint_(LINK) << L"\\href{" << ptext_[_1 = ph::at_c<2>(_val)] << L"}{" << (+text_)[_1 = ph::at_c<1>(_val)] << '}'; |
