Changes between Initial Version and Version 1 of Onion/UsageExample
- Timestamp:
- 01/12/15 18:10:20 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Onion/UsageExample
v1 v1 1 = Usage Example = 2 3 {{{ 4 $ cat weather-forecasts.vert 5 6 <doc id="1" name="Weather forecasts for Czech Republic"> 7 <p> 8 Weather 9 forecast 10 for 11 Prague: 12 Partially 13 cloudy 14 with 15 occasional 16 showers. 17 Temperatures 18 around 19 15 20 degrees 21 Celsius. 22 North 23 wind 24 between 25 20 26 and 27 25 28 km/h. 29 </p> 30 <p> 31 Weather 32 forecast 33 for 34 Brno: 35 Partially 36 cloudy 37 with 38 occasional 39 showers. 40 Temperatures 41 around 42 16 43 degrees 44 Celsius. 45 North 46 wind 47 between 48 20 49 and 50 30 51 km/h. 52 </p> 53 </doc> 54 }}} 55 56 The second paragraph is removed since it is a near-duplicate of the first paragraph (according to the default settings): 57 58 {{{ 59 $ onion -smq weather-forecasts.vert 60 61 <doc id="1" name="Weather forecasts for Czech Republic"> 62 <p> 63 Weather 64 forecast 65 for 66 Prague: 67 Partially 68 cloudy 69 with 70 occasional 71 showers. 72 Temperatures 73 around 74 15 75 degrees 76 Celsius. 77 North 78 wind 79 between 80 20 81 and 82 25 83 km/h. 84 </p> 85 </doc> 86 }}}