diff options
| author | Dan Allen <dan.j.allen@gmail.com> | 2015-07-04 19:25:24 -0600 |
|---|---|---|
| committer | Dan Allen <dan.j.allen@gmail.com> | 2015-07-05 16:57:13 -0600 |
| commit | 2893d1666060fbb360e717fd503e06f8cc0f6f32 (patch) | |
| tree | 4d13534b1cc76f03422a2614b6f6965c5be410fe /features | |
| parent | 48cd2e921876f70399668b91ce2ff1b6c067aa66 (diff) | |
resolves #1170 and #841 expand tabs properly
- introduce tabsize attribute to control size of tab character
- expand tabs in verbatim blocks if tab present and value of tabsize attribute is positive
- rename reset_block_indent! to adjust_indentation!
- only use adjust_indentation! on include if indent is specified
- only expand tabs in included content if indent attribute is set
- use adjust_indentation! to remove left margin in paragraphs marked normal
- don't add indentation to empty lines
- set tab-size property to 4 in default stylesheet
- increase letter spacing in blockquote cite in default stylesheet
- add and fix tests
Diffstat (limited to 'features')
| -rw-r--r-- | features/text_formatting.feature | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/features/text_formatting.feature b/features/text_formatting.feature index 4517c6e8..71a8d6b6 100644 --- a/features/text_formatting.feature +++ b/features/text_formatting.feature @@ -44,6 +44,8 @@ Feature: Text Formatting Scenario: Convert text that has ex-inline monospaced formatting Given the AsciiDoc source """ + :encoding: UTF-8 + The document is assumed to be encoded as [x-]+{encoding}+. """ When it is converted to html |
