Docs: bad text wrapping

On the page http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/analysis-synonym-tokenfilter.html

even on a huge monitor the text is being wrapped the next way
```
mapping:
ipod, i-pod, i pod => ipod, i-pod, i pod
mapping:
ipod, i-pod, i pod => ipod
```

So one can think that "mapping:" is not in comment and is a part of syntax. But the lines are less than 80 chars, so perhaps the problem is in the page layout and there may be some other pages in the reference where the text is also being wrapped in an undesirable way.

Closes #7739
This commit is contained in:
Sergii Golubev 2014-09-16 16:24:45 +03:00 committed by Clinton Gormley
parent 3a008c7355
commit 059d9f757a

View File

@ -63,9 +63,11 @@ ipod, i-pod, i pod
foozball , foosball foozball , foosball
universe , cosmos universe , cosmos
# If expand==true, "ipod, i-pod, i pod" is equivalent to the explicit mapping: # If expand==true, "ipod, i-pod, i pod" is equivalent
# to the explicit mapping:
ipod, i-pod, i pod => ipod, i-pod, i pod ipod, i-pod, i pod => ipod, i-pod, i pod
# If expand==false, "ipod, i-pod, i pod" is equivalent to the explicit mapping: # If expand==false, "ipod, i-pod, i pod" is equivalent
# to the explicit mapping:
ipod, i-pod, i pod => ipod ipod, i-pod, i pod => ipod
#multiple synonym mapping entries are merged. #multiple synonym mapping entries are merged.