typograf 6.15.0 → 7.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (308) hide show
  1. package/CHANGELOG.md +447 -0
  2. package/LICENSE.md +1 -1
  3. package/README.md +1 -1
  4. package/dist/consts.d.ts +2 -0
  5. package/dist/data/be.d.ts +8 -0
  6. package/dist/data/bg.d.ts +8 -0
  7. package/dist/data/ca.d.ts +8 -0
  8. package/dist/data/common.d.ts +6 -0
  9. package/dist/data/cs.d.ts +8 -0
  10. package/dist/data/da.d.ts +8 -0
  11. package/dist/data/de.d.ts +8 -0
  12. package/dist/data/el.d.ts +8 -0
  13. package/dist/data/en-GB.d.ts +8 -0
  14. package/dist/data/en-US.d.ts +8 -0
  15. package/dist/data/eo.d.ts +8 -0
  16. package/dist/data/es.d.ts +8 -0
  17. package/dist/data/et.d.ts +8 -0
  18. package/dist/data/fi.d.ts +8 -0
  19. package/dist/data/fr.d.ts +9 -0
  20. package/dist/data/ga.d.ts +8 -0
  21. package/dist/data/hu.d.ts +8 -0
  22. package/dist/data/index.d.ts +1 -0
  23. package/dist/data/it.d.ts +8 -0
  24. package/dist/data/lv.d.ts +8 -0
  25. package/dist/data/nl.d.ts +8 -0
  26. package/dist/data/no.d.ts +8 -0
  27. package/dist/data/pl.d.ts +8 -0
  28. package/dist/data/ro.d.ts +8 -0
  29. package/dist/data/ru.d.ts +19 -0
  30. package/dist/data/sk.d.ts +8 -0
  31. package/dist/data/sl.d.ts +8 -0
  32. package/dist/data/sr.d.ts +8 -0
  33. package/dist/data/sv.d.ts +8 -0
  34. package/dist/data/tr.d.ts +8 -0
  35. package/dist/data/uk.d.ts +8 -0
  36. package/dist/data.d.ts +16 -0
  37. package/dist/groupIndexes.d.ts +1 -0
  38. package/dist/helpers/object.d.ts +4 -0
  39. package/dist/helpers/regExp.d.ts +4 -0
  40. package/dist/helpers/string.d.ts +6 -0
  41. package/dist/htmlEntities/index.d.ts +41 -0
  42. package/dist/htmlEntities/invisible.d.ts +2 -0
  43. package/dist/htmlEntities/visible.d.ts +2 -0
  44. package/dist/htmlTags/block.d.ts +1 -0
  45. package/dist/htmlTags/inline.d.ts +1 -0
  46. package/dist/locale.d.ts +5 -0
  47. package/dist/main.d.ts +130 -0
  48. package/dist/prefs.d.ts +6 -0
  49. package/dist/rule.d.ts +9 -0
  50. package/dist/rules/common/html/e-mail.d.ts +2 -0
  51. package/dist/rules/common/html/e-mail.test.d.ts +1 -0
  52. package/dist/rules/common/html/escape.d.ts +2 -0
  53. package/dist/rules/common/html/escape.test.d.ts +1 -0
  54. package/dist/rules/common/html/index.d.ts +1 -0
  55. package/dist/rules/common/html/nbr.d.ts +2 -0
  56. package/dist/rules/common/html/nbr.test.d.ts +1 -0
  57. package/dist/rules/common/html/p.d.ts +2 -0
  58. package/dist/rules/common/html/p.test.d.ts +1 -0
  59. package/dist/rules/common/html/processingAttrs.d.ts +4 -0
  60. package/dist/rules/common/html/quot.d.ts +2 -0
  61. package/dist/rules/common/html/quot.test.d.ts +1 -0
  62. package/dist/rules/common/html/stripTags.d.ts +2 -0
  63. package/dist/rules/common/html/stripTags.test.d.ts +1 -0
  64. package/dist/rules/common/html/url.d.ts +2 -0
  65. package/dist/rules/common/html/url.test.d.ts +1 -0
  66. package/dist/rules/common/index.d.ts +7 -0
  67. package/dist/rules/common/nbsp/afterNumber.d.ts +2 -0
  68. package/dist/rules/common/nbsp/afterNumber.test.d.ts +1 -0
  69. package/dist/rules/common/nbsp/afterParagraphMark.d.ts +2 -0
  70. package/dist/rules/common/nbsp/afterParagraphMark.test.d.ts +1 -0
  71. package/dist/rules/common/nbsp/afterSectionMark.d.ts +2 -0
  72. package/dist/rules/common/nbsp/afterSectionMark.test.d.ts +1 -0
  73. package/dist/rules/common/nbsp/afterShortWord.d.ts +4 -0
  74. package/dist/rules/common/nbsp/afterShortWord.test.d.ts +1 -0
  75. package/dist/rules/common/nbsp/beforeShortLastNumber.d.ts +4 -0
  76. package/dist/rules/common/nbsp/beforeShortLastNumber.test.d.ts +1 -0
  77. package/dist/rules/common/nbsp/beforeShortLastWord.d.ts +4 -0
  78. package/dist/rules/common/nbsp/beforeShortLastWord.test.d.ts +1 -0
  79. package/dist/rules/common/nbsp/dpi.d.ts +2 -0
  80. package/dist/rules/common/nbsp/dpi.test.d.ts +1 -0
  81. package/dist/rules/common/nbsp/index.d.ts +1 -0
  82. package/dist/rules/common/nbsp/nowrap.d.ts +2 -0
  83. package/dist/rules/common/nbsp/nowrap.test.d.ts +1 -0
  84. package/dist/rules/common/nbsp/replaceNbsp.d.ts +2 -0
  85. package/dist/rules/common/nbsp/replaceNbsp.test.d.ts +1 -0
  86. package/dist/rules/common/number/digitGrouping.d.ts +4 -0
  87. package/dist/rules/common/number/digitGrouping.test.d.ts +1 -0
  88. package/dist/rules/common/number/fraction.d.ts +2 -0
  89. package/dist/rules/common/number/fraction.test.d.ts +1 -0
  90. package/dist/rules/common/number/index.d.ts +1 -0
  91. package/dist/rules/common/number/mathSigns.d.ts +2 -0
  92. package/dist/rules/common/number/mathSigns.test.d.ts +1 -0
  93. package/dist/rules/common/number/times.d.ts +2 -0
  94. package/dist/rules/common/number/times.test.d.ts +1 -0
  95. package/dist/rules/common/other/delBOM.d.ts +2 -0
  96. package/dist/rules/common/other/delBOM.test.d.ts +1 -0
  97. package/dist/rules/common/other/index.d.ts +1 -0
  98. package/dist/rules/common/other/repeatWord.d.ts +4 -0
  99. package/dist/rules/common/other/repeatWord.test.d.ts +1 -0
  100. package/dist/rules/common/punctuation/apostrophe.d.ts +2 -0
  101. package/dist/rules/common/punctuation/apostrophe.test.d.ts +1 -0
  102. package/dist/rules/common/punctuation/delDoublePunctuation.d.ts +2 -0
  103. package/dist/rules/common/punctuation/delDoublePunctuation.test.d.ts +1 -0
  104. package/dist/rules/common/punctuation/hellip.d.ts +2 -0
  105. package/dist/rules/common/punctuation/hellip.en-US.test.d.ts +1 -0
  106. package/dist/rules/common/punctuation/hellip.ru.test.d.ts +1 -0
  107. package/dist/rules/common/punctuation/index.d.ts +1 -0
  108. package/dist/rules/common/punctuation/quote.d.ts +5 -0
  109. package/dist/rules/common/punctuation/quote.de.test.d.ts +1 -0
  110. package/dist/rules/common/punctuation/quote.en-GB.test.d.ts +1 -0
  111. package/dist/rules/common/punctuation/quote.en-US.test.d.ts +1 -0
  112. package/dist/rules/common/punctuation/quote.fi.test.d.ts +1 -0
  113. package/dist/rules/common/punctuation/quote.fr.test.d.ts +1 -0
  114. package/dist/rules/common/punctuation/quote.pl.test.d.ts +1 -0
  115. package/dist/rules/common/punctuation/quote.ru.test.d.ts +1 -0
  116. package/dist/rules/common/punctuation/quoteLink.d.ts +2 -0
  117. package/dist/rules/common/punctuation/quoteLink.test.d.ts +1 -0
  118. package/dist/rules/common/space/afterColon.d.ts +2 -0
  119. package/dist/rules/common/space/afterColon.test.d.ts +1 -0
  120. package/dist/rules/common/space/afterComma.d.ts +2 -0
  121. package/dist/rules/common/space/afterComma.test.d.ts +1 -0
  122. package/dist/rules/common/space/afterExclamationMark.d.ts +2 -0
  123. package/dist/rules/common/space/afterExclamationMark.test.d.ts +1 -0
  124. package/dist/rules/common/space/afterQuestionMark.d.ts +2 -0
  125. package/dist/rules/common/space/afterQuestionMark.test.d.ts +1 -0
  126. package/dist/rules/common/space/afterSemicolon.d.ts +2 -0
  127. package/dist/rules/common/space/afterSemicolon.test.d.ts +1 -0
  128. package/dist/rules/common/space/beforeBracket.d.ts +2 -0
  129. package/dist/rules/common/space/beforeBracket.test.d.ts +1 -0
  130. package/dist/rules/common/space/bracket.d.ts +2 -0
  131. package/dist/rules/common/space/bracket.test.d.ts +1 -0
  132. package/dist/rules/common/space/delBeforeDot.d.ts +2 -0
  133. package/dist/rules/common/space/delBeforeDot.test.d.ts +1 -0
  134. package/dist/rules/common/space/delBeforePercent.d.ts +2 -0
  135. package/dist/rules/common/space/delBeforePercent.test.d.ts +1 -0
  136. package/dist/rules/common/space/delBeforePunctuation.d.ts +2 -0
  137. package/dist/rules/common/space/delBeforePunctuation.test.d.ts +1 -0
  138. package/dist/rules/common/space/delBetweenExclamationMarks.d.ts +2 -0
  139. package/dist/rules/common/space/delBetweenExclamationMarks.test.d.ts +1 -0
  140. package/dist/rules/common/space/delLeadingBlanks.d.ts +2 -0
  141. package/dist/rules/common/space/delLeadingBlanks.test.d.ts +1 -0
  142. package/dist/rules/common/space/delRepeatN.d.ts +4 -0
  143. package/dist/rules/common/space/delRepeatN.test.d.ts +1 -0
  144. package/dist/rules/common/space/delRepeatSpace.d.ts +2 -0
  145. package/dist/rules/common/space/delRepeatSpace.test.d.ts +1 -0
  146. package/dist/rules/common/space/delTrailingBlanks.d.ts +2 -0
  147. package/dist/rules/common/space/delTrailingBlanks.test.d.ts +1 -0
  148. package/dist/rules/common/space/index.d.ts +1 -0
  149. package/dist/rules/common/space/insertFinalNewline.d.ts +2 -0
  150. package/dist/rules/common/space/insertFinalNewline.test.d.ts +1 -0
  151. package/dist/rules/common/space/replaceTab.d.ts +2 -0
  152. package/dist/rules/common/space/replaceTab.test.d.ts +1 -0
  153. package/dist/rules/common/space/squareBracket.d.ts +2 -0
  154. package/dist/rules/common/space/squareBracket.test.d.ts +1 -0
  155. package/dist/rules/common/space/trimLeft.d.ts +2 -0
  156. package/dist/rules/common/space/trimLeft.test.d.ts +1 -0
  157. package/dist/rules/common/space/trimRight.d.ts +2 -0
  158. package/dist/rules/common/space/trimRight.test.d.ts +1 -0
  159. package/dist/rules/common/symbols/arrow.d.ts +2 -0
  160. package/dist/rules/common/symbols/arrow.test.d.ts +1 -0
  161. package/dist/rules/common/symbols/cf.d.ts +2 -0
  162. package/dist/rules/common/symbols/cf.test.d.ts +1 -0
  163. package/dist/rules/common/symbols/copy.d.ts +2 -0
  164. package/dist/rules/common/symbols/copy.test.d.ts +1 -0
  165. package/dist/rules/common/symbols/index.d.ts +1 -0
  166. package/dist/rules/en-US/dash/index.d.ts +1 -0
  167. package/dist/rules/en-US/dash/main.d.ts +2 -0
  168. package/dist/rules/en-US/dash/main.test.d.ts +1 -0
  169. package/dist/rules/en-US/index.d.ts +1 -0
  170. package/dist/rules/index.d.ts +3 -0
  171. package/dist/rules/ru/dash/centuries.d.ts +4 -0
  172. package/dist/rules/ru/dash/centuries.test.d.ts +1 -0
  173. package/dist/rules/ru/dash/daysMonth.d.ts +4 -0
  174. package/dist/rules/ru/dash/daysMonth.test.d.ts +1 -0
  175. package/dist/rules/ru/dash/de.d.ts +2 -0
  176. package/dist/rules/ru/dash/de.test.d.ts +1 -0
  177. package/dist/rules/ru/dash/decade.d.ts +4 -0
  178. package/dist/rules/ru/dash/decade.test.d.ts +1 -0
  179. package/dist/rules/ru/dash/directSpeech.d.ts +2 -0
  180. package/dist/rules/ru/dash/directSpeech.test.d.ts +1 -0
  181. package/dist/rules/ru/dash/index.d.ts +1 -0
  182. package/dist/rules/ru/dash/izpod.d.ts +2 -0
  183. package/dist/rules/ru/dash/izpod.test.d.ts +1 -0
  184. package/dist/rules/ru/dash/izza.d.ts +2 -0
  185. package/dist/rules/ru/dash/izza.test.d.ts +1 -0
  186. package/dist/rules/ru/dash/ka.d.ts +2 -0
  187. package/dist/rules/ru/dash/ka.test.d.ts +1 -0
  188. package/dist/rules/ru/dash/kakto.d.ts +2 -0
  189. package/dist/rules/ru/dash/kakto.test.d.ts +1 -0
  190. package/dist/rules/ru/dash/koe.d.ts +2 -0
  191. package/dist/rules/ru/dash/koe.test.d.ts +1 -0
  192. package/dist/rules/ru/dash/main.d.ts +2 -0
  193. package/dist/rules/ru/dash/main.test.d.ts +1 -0
  194. package/dist/rules/ru/dash/month.d.ts +4 -0
  195. package/dist/rules/ru/dash/month.test.d.ts +1 -0
  196. package/dist/rules/ru/dash/surname.d.ts +2 -0
  197. package/dist/rules/ru/dash/surname.test.d.ts +1 -0
  198. package/dist/rules/ru/dash/taki.d.ts +2 -0
  199. package/dist/rules/ru/dash/taki.test.d.ts +1 -0
  200. package/dist/rules/ru/dash/time.d.ts +4 -0
  201. package/dist/rules/ru/dash/time.test.d.ts +1 -0
  202. package/dist/rules/ru/dash/to.d.ts +2 -0
  203. package/dist/rules/ru/dash/to.test.d.ts +1 -0
  204. package/dist/rules/ru/dash/weekday.d.ts +4 -0
  205. package/dist/rules/ru/dash/weekday.test.d.ts +1 -0
  206. package/dist/rules/ru/dash/years.d.ts +4 -0
  207. package/dist/rules/ru/dash/years.test.d.ts +1 -0
  208. package/dist/rules/ru/date/fromISO.d.ts +2 -0
  209. package/dist/rules/ru/date/fromISO.test.d.ts +1 -0
  210. package/dist/rules/ru/date/index.d.ts +1 -0
  211. package/dist/rules/ru/date/weekday.d.ts +2 -0
  212. package/dist/rules/ru/date/weekday.test.d.ts +1 -0
  213. package/dist/rules/ru/index.d.ts +11 -0
  214. package/dist/rules/ru/money/currency.d.ts +2 -0
  215. package/dist/rules/ru/money/currency.test.d.ts +1 -0
  216. package/dist/rules/ru/money/index.d.ts +1 -0
  217. package/dist/rules/ru/money/ruble.d.ts +2 -0
  218. package/dist/rules/ru/money/ruble.test.d.ts +1 -0
  219. package/dist/rules/ru/nbsp/abbr.d.ts +2 -0
  220. package/dist/rules/ru/nbsp/abbr.test.d.ts +1 -0
  221. package/dist/rules/ru/nbsp/addr.d.ts +2 -0
  222. package/dist/rules/ru/nbsp/addr.test.d.ts +1 -0
  223. package/dist/rules/ru/nbsp/afterNumberSign.d.ts +2 -0
  224. package/dist/rules/ru/nbsp/afterNumberSign.test.d.ts +1 -0
  225. package/dist/rules/ru/nbsp/beforeParticle.d.ts +2 -0
  226. package/dist/rules/ru/nbsp/beforeParticle.test.d.ts +1 -0
  227. package/dist/rules/ru/nbsp/centuries.d.ts +2 -0
  228. package/dist/rules/ru/nbsp/centuries.test.d.ts +1 -0
  229. package/dist/rules/ru/nbsp/dayMonth.d.ts +2 -0
  230. package/dist/rules/ru/nbsp/dayMonth.test.d.ts +1 -0
  231. package/dist/rules/ru/nbsp/index.d.ts +1 -0
  232. package/dist/rules/ru/nbsp/initials.d.ts +2 -0
  233. package/dist/rules/ru/nbsp/initials.test.d.ts +1 -0
  234. package/dist/rules/ru/nbsp/m.d.ts +2 -0
  235. package/dist/rules/ru/nbsp/m.test.d.ts +1 -0
  236. package/dist/rules/ru/nbsp/mln.d.ts +2 -0
  237. package/dist/rules/ru/nbsp/mln.test.d.ts +1 -0
  238. package/dist/rules/ru/nbsp/ooo.d.ts +2 -0
  239. package/dist/rules/ru/nbsp/ooo.test.d.ts +1 -0
  240. package/dist/rules/ru/nbsp/page.d.ts +2 -0
  241. package/dist/rules/ru/nbsp/page.test.d.ts +1 -0
  242. package/dist/rules/ru/nbsp/ps.d.ts +2 -0
  243. package/dist/rules/ru/nbsp/ps.test.d.ts +1 -0
  244. package/dist/rules/ru/nbsp/rubleKopek.d.ts +2 -0
  245. package/dist/rules/ru/nbsp/rubleKopek.test.d.ts +1 -0
  246. package/dist/rules/ru/nbsp/see.d.ts +2 -0
  247. package/dist/rules/ru/nbsp/see.test.d.ts +1 -0
  248. package/dist/rules/ru/nbsp/year.d.ts +2 -0
  249. package/dist/rules/ru/nbsp/year.test.d.ts +1 -0
  250. package/dist/rules/ru/nbsp/years.d.ts +2 -0
  251. package/dist/rules/ru/nbsp/years.test.d.ts +1 -0
  252. package/dist/rules/ru/number/comma.d.ts +2 -0
  253. package/dist/rules/ru/number/comma.test.d.ts +1 -0
  254. package/dist/rules/ru/number/index.d.ts +1 -0
  255. package/dist/rules/ru/number/ordinals.d.ts +2 -0
  256. package/dist/rules/ru/number/ordinals.test.d.ts +1 -0
  257. package/dist/rules/ru/optalign/bracket.d.ts +4 -0
  258. package/dist/rules/ru/optalign/bracket.test.d.ts +1 -0
  259. package/dist/rules/ru/optalign/comma.d.ts +4 -0
  260. package/dist/rules/ru/optalign/comma.test.d.ts +1 -0
  261. package/dist/rules/ru/optalign/helpers.d.ts +2 -0
  262. package/dist/rules/ru/optalign/index.d.ts +1 -0
  263. package/dist/rules/ru/optalign/quote.d.ts +4 -0
  264. package/dist/rules/ru/optalign/quote.test.d.ts +1 -0
  265. package/dist/rules/ru/other/accent.d.ts +2 -0
  266. package/dist/rules/ru/other/accent.test.d.ts +1 -0
  267. package/dist/rules/ru/other/index.d.ts +1 -0
  268. package/dist/rules/ru/other/phone-number.d.ts +2 -0
  269. package/dist/rules/ru/other/phone-number.test.d.ts +1 -0
  270. package/dist/rules/ru/punctuation/ano.d.ts +2 -0
  271. package/dist/rules/ru/punctuation/ano.test.d.ts +1 -0
  272. package/dist/rules/ru/punctuation/exclamation.d.ts +2 -0
  273. package/dist/rules/ru/punctuation/exclamation.test.d.ts +1 -0
  274. package/dist/rules/ru/punctuation/exclamationQuestion.d.ts +2 -0
  275. package/dist/rules/ru/punctuation/exclamationQuestion.test.d.ts +1 -0
  276. package/dist/rules/ru/punctuation/hellipQuestion.d.ts +2 -0
  277. package/dist/rules/ru/punctuation/hellipQuestion.test.d.ts +1 -0
  278. package/dist/rules/ru/punctuation/index.d.ts +1 -0
  279. package/dist/rules/ru/space/afterHellip.d.ts +2 -0
  280. package/dist/rules/ru/space/afterHellip.test.d.ts +1 -0
  281. package/dist/rules/ru/space/index.d.ts +1 -0
  282. package/dist/rules/ru/space/year.d.ts +2 -0
  283. package/dist/rules/ru/space/year.test.d.ts +1 -0
  284. package/dist/rules/ru/symbols/NN.d.ts +2 -0
  285. package/dist/rules/ru/symbols/NN.test.d.ts +1 -0
  286. package/dist/rules/ru/symbols/index.d.ts +1 -0
  287. package/dist/rules/ru/typo/index.d.ts +1 -0
  288. package/dist/rules/ru/typo/switchingKeyboardLayout.d.ts +2 -0
  289. package/dist/rules/ru/typo/switchingKeyboardLayout.test.d.ts +1 -0
  290. package/dist/safeTags.d.ts +42 -0
  291. package/dist/typograf.all.d.ts +2 -0
  292. package/dist/typograf.all.js +3274 -3543
  293. package/dist/typograf.all.min.js +2 -2
  294. package/dist/typograf.css +5 -5
  295. package/dist/typograf.d.ts +3 -0
  296. package/dist/typograf.es.mjs +3268 -0
  297. package/dist/typograf.js +3175 -3050
  298. package/dist/typograf.min.js +2 -2
  299. package/dist/typograf.titles.js +1 -409
  300. package/dist/typograf.titles.json +1 -409
  301. package/dist/version.d.ts +1 -0
  302. package/docs/RULES.en-US.md +105 -105
  303. package/docs/RULES.ru.md +105 -105
  304. package/docs/RULES_SORTED.en-US.md +105 -105
  305. package/docs/RULES_SORTED.ru.md +105 -105
  306. package/package.json +47 -31
  307. package/dist/typograf.es.js +0 -3143
  308. package/typograf.d.ts +0 -51
@@ -2,108 +2,108 @@
2
2
 
3
3
  | № | [Name](./RULES.en.md) | Title | Index ▼ | Queue | On |
4
4
  |--:|-----------------------|-------|--------:|:-----:|:--:|
5
- | 1. | [common/other/delBOM](../src/rules/common/other/delBOM.js) | Delete character BOM (Byte Order Mark) | -1 | start | ✓ |
6
- | 2. | [common/symbols/arrow](../src/rules/common/symbols/arrow.js) | -> → →, <- → ← | 110 | | ✓ |
7
- | 3. | [common/symbols/cf](../src/rules/common/symbols/cf.js) | Adding ° to C and F | 110 | | ✓ |
8
- | 4. | [common/symbols/copy](../src/rules/common/symbols/copy.js) | (c) → ©, (tm) → ™, (r) → ® | 110 | | ✓ |
9
- | 5. | [ru/symbols/NN](../src/rules/ru/symbols/NN.js) | №№ → № | 110 | | ✓ |
10
- | 6. | [common/space/replaceTab](../src/rules/common/space/replaceTab.js) | Replacement of tab to 4 spaces | 205 | | ✓ |
11
- | 7. | [common/space/trimLeft](../src/rules/common/space/trimLeft.js) | Remove spaces and line breaks in beginning of text | 206 | | ✓ |
12
- | 8. | [common/space/delTrailingBlanks](../src/rules/common/space/delTrailingBlanks.js) | Remove spaces at end of line | 207 | | ✓ |
13
- | 9. | [common/space/trimRight](../src/rules/common/space/trimRight.js) | Remove spaces and line breaks at end of text | 207 | | ✓ |
14
- | 10. | [common/space/delRepeatN](../src/rules/common/space/delRepeatN.js) | Remove duplicate line breaks | 209 | | ✓ |
15
- | 11. | [common/space/delRepeatSpace](../src/rules/common/space/delRepeatSpace.js) | Removing duplicate spaces between characters | 209 | | ✓ |
16
- | 12. | [common/space/afterColon](../src/rules/common/space/afterColon.js) | space after colon | 210 | | ✓ |
17
- | 13. | [common/space/afterComma](../src/rules/common/space/afterComma.js) | space after comma | 210 | | ✓ |
18
- | 14. | [common/space/afterExclamationMark](../src/rules/common/space/afterExclamationMark.js) | space after exclamation mark | 210 | | ✓ |
19
- | 15. | [common/space/afterQuestionMark](../src/rules/common/space/afterQuestionMark.js) | space after question mark | 210 | | ✓ |
20
- | 16. | [common/space/afterSemicolon](../src/rules/common/space/afterSemicolon.js) | space after semicolon | 210 | | ✓ |
21
- | 17. | [common/space/beforeBracket](../src/rules/common/space/beforeBracket.js) | Space before opening bracket | 210 | | ✓ |
22
- | 18. | [common/space/bracket](../src/rules/common/space/bracket.js) | Remove extra spaces after opening and before closing bracket | 210 | | ✓ |
23
- | 19. | [common/space/delBeforeDot](../src/rules/common/space/delBeforeDot.js) | Remove space before dot | 210 | | ✓ |
24
- | 20. | [common/space/delBeforePercent](../src/rules/common/space/delBeforePercent.js) | Remove space before %, and | 210 | | ✓ |
25
- | 21. | [common/space/delBeforePunctuation](../src/rules/common/space/delBeforePunctuation.js) | Remove spaces before punctuation | 210 | | ✓ |
26
- | 22. | [common/space/delBetweenExclamationMarks](../src/rules/common/space/delBetweenExclamationMarks.js) | Remove spaces before exclamation marks | 210 | | ✓ |
27
- | 23. | [common/space/delLeadingBlanks](../src/rules/common/space/delLeadingBlanks.js) | Remove spaces at start of line | 210 | | |
28
- | 24. | [common/space/insertFinalNewline](../src/rules/common/space/insertFinalNewline.js) | Insert final newline | 210 | end | |
29
- | 25. | [common/space/squareBracket](../src/rules/common/space/squareBracket.js) | Remove extra spaces after opening and before closing square bracket | 210 | | ✓ |
30
- | 26. | [ru/space/afterHellip](../src/rules/ru/space/afterHellip.js) | Space after “...”, “!..” and “?..” | 210 | | ✓ |
31
- | 27. | [ru/space/year](../src/rules/ru/space/year.js) | Space between number and word “год” | 210 | | ✓ |
32
- | 28. | [en-US/dash/main](../src/rules/en-US/dash/main.js) | Replace hyphens surrounded by spaces with an em-dash | 305 | | ✓ |
33
- | 29. | [ru/dash/main](../src/rules/ru/dash/main.js) | Replacement hyphen with dash | 305 | | ✓ |
34
- | 30. | [ru/dash/centuries](../src/rules/ru/dash/centuries.js) | Hyphen to dash in centuries | 310 | | ✓ |
35
- | 31. | [ru/dash/daysMonth](../src/rules/ru/dash/daysMonth.js) | Dash between days of one month | 310 | | ✓ |
36
- | 32. | [ru/dash/de](../src/rules/ru/dash/de.js) | Hyphen before “де” | 310 | | |
37
- | 33. | [ru/dash/decade](../src/rules/ru/dash/decade.js) | Dash in decade | 310 | | ✓ |
38
- | 34. | [ru/dash/directSpeech](../src/rules/ru/dash/directSpeech.js) | Dash in direct speech | 310 | | ✓ |
39
- | 35. | [ru/dash/izpod](../src/rules/ru/dash/izpod.js) | Hyphen between “из-под” | 310 | | ✓ |
40
- | 36. | [ru/dash/izza](../src/rules/ru/dash/izza.js) | Hyphen between “из-за” | 310 | | ✓ |
41
- | 37. | [ru/dash/ka](../src/rules/ru/dash/ka.js) | Hyphen before “ка” and “кась” | 310 | | ✓ |
42
- | 38. | [ru/dash/kakto](../src/rules/ru/dash/kakto.js) | Hyphen for “как то” | 310 | | ✓ |
43
- | 39. | [ru/dash/koe](../src/rules/ru/dash/koe.js) | Hyphen after “кое” and “кой” | 310 | | ✓ |
44
- | 40. | [ru/dash/month](../src/rules/ru/dash/month.js) | Dash between months | 310 | | ✓ |
45
- | 41. | [ru/dash/surname](../src/rules/ru/dash/surname.js) | Acronyms with a dash | 310 | | ✓ |
46
- | 42. | [ru/dash/taki](../src/rules/ru/dash/taki.js) | Hyphen between “верно-таки” and etc. | 310 | | ✓ |
47
- | 43. | [ru/dash/time](../src/rules/ru/dash/time.js) | Dash in time intervals | 310 | | ✓ |
48
- | 44. | [ru/dash/to](../src/rules/ru/dash/to.js) | Hyphen before “то”, “либо”, “нибудь” | 310 | | ✓ |
49
- | 45. | [ru/dash/weekday](../src/rules/ru/dash/weekday.js) | Dash between the days of the week | 310 | | ✓ |
50
- | 46. | [ru/dash/years](../src/rules/ru/dash/years.js) | Hyphen to dash in years | 310 | | ✓ |
51
- | 47. | [common/punctuation/apostrophe](../src/rules/common/punctuation/apostrophe.js) | Placement of correct apostrophe | 410 | | ✓ |
52
- | 48. | [common/punctuation/delDoublePunctuation](../src/rules/common/punctuation/delDoublePunctuation.js) | Removing double punctuation | 410 | | ✓ |
53
- | 49. | [common/punctuation/hellip](../src/rules/common/punctuation/hellip.js) | Replacement of three points by ellipsis | 410 | | ✓ |
54
- | 50. | [common/punctuation/quote](../src/rules/common/punctuation/quote.js) | Placement of quotation marks in texts | 410 | | ✓ |
55
- | 51. | [ru/punctuation/ano](../src/rules/ru/punctuation/ano.js) | Placement of commas before “а” and “но” | 410 | | ✓ |
56
- | 52. | [ru/punctuation/exclamation](../src/rules/ru/punctuation/exclamation.js) | !! ! | 410 | | ✓ |
57
- | 53. | [ru/punctuation/hellipQuestion](../src/rules/ru/punctuation/hellipQuestion.js) | «?…» «?..», «!…» «!..», «…,» → «…» | 410 | | ✓ |
58
- | 54. | [common/punctuation/quoteLink](../src/rules/common/punctuation/quoteLink.js) | Removal quotes outside a link | 415 | show-safe-tags-html | ✓ |
59
- | 55. | [ru/punctuation/exclamationQuestion](../src/rules/ru/punctuation/exclamationQuestion.js) | !? ?! | 415 | | ✓ |
60
- | 56. | [common/nbsp/afterNumber](../src/rules/common/nbsp/afterNumber.js) | Non-breaking space between number and word | 510 | | |
61
- | 57. | [common/nbsp/afterParagraphMark](../src/rules/common/nbsp/afterParagraphMark.js) | Non-breaking space after | 510 | | ✓ |
62
- | 58. | [common/nbsp/afterSectionMark](../src/rules/common/nbsp/afterSectionMark.js) | Non-breaking space after § | 510 | | ✓ |
63
- | 59. | [common/nbsp/afterShortWord](../src/rules/common/nbsp/afterShortWord.js) | Non-breaking space after short word | 510 | | ✓ |
64
- | 60. | [common/nbsp/beforeShortLastNumber](../src/rules/common/nbsp/beforeShortLastNumber.js) | Non-breaking space before number (maximum 2 digits) at end of sentence | 510 | | ✓ |
65
- | 61. | [common/nbsp/beforeShortLastWord](../src/rules/common/nbsp/beforeShortLastWord.js) | Non-breaking space before last short word in sentence | 510 | | ✓ |
66
- | 62. | [common/nbsp/dpi](../src/rules/common/nbsp/dpi.js) | Non-breaking space before lpi and dpi | 510 | | |
67
- | 63. | [common/nbsp/nowrap](../src/rules/common/nbsp/nowrap.js) | Replace non-breaking space to normal space in tags nowrap and nobr | 510 | end | ✓ |
68
- | 64. | [common/nbsp/replaceNbsp](../src/rules/common/nbsp/replaceNbsp.js) | Replacing non-breaking space on normal before text correction | 510 | utf | |
69
- | 65. | [ru/nbsp/abbr](../src/rules/ru/nbsp/abbr.js) | Non-breaking space in abbreviations, e.g. “т. д.” | 510 | | ✓ |
70
- | 66. | [ru/nbsp/addr](../src/rules/ru/nbsp/addr.js) | Placement of non-breaking space after “г.”, “обл.”, “ул.”, “пр.”, “кв.” et al. | 510 | | ✓ |
71
- | 67. | [ru/nbsp/afterNumberSign](../src/rules/ru/nbsp/afterNumberSign.js) | Non-breaking thin space after | 510 | | ✓ |
72
- | 68. | [ru/nbsp/centuries](../src/rules/ru/nbsp/centuries.js) | Remove spaces and extra points in “вв.” | 510 | | ✓ |
73
- | 69. | [ru/nbsp/dayMonth](../src/rules/ru/nbsp/dayMonth.js) | Non-breaking space between number and month | 510 | | ✓ |
74
- | 70. | [ru/nbsp/initials](../src/rules/ru/nbsp/initials.js) | Binding of initials to the name | 510 | | |
75
- | 71. | [ru/nbsp/mln](../src/rules/ru/nbsp/mln.js) | Non-breaking space between number and “тыс.”, “млн”, “млрд” and “трлн” | 510 | | ✓ |
76
- | 72. | [ru/nbsp/ooo](../src/rules/ru/nbsp/ooo.js) | Non-breaking space after “OOO, ОАО, ЗАО, НИИ, ПБОЮЛ” | 510 | | ✓ |
77
- | 73. | [ru/nbsp/page](../src/rules/ru/nbsp/page.js) | Non-breaking space after “стр.”, “гл.”, “рис.”, “илл.” | 510 | | ✓ |
78
- | 74. | [ru/nbsp/ps](../src/rules/ru/nbsp/ps.js) | Non-breaking space in P. S. and P. P. S. | 510 | | ✓ |
79
- | 75. | [ru/nbsp/rubleKopek](../src/rules/ru/nbsp/rubleKopek.js) | Not once. space before the “rub” and “cop.” | 510 | | ✓ |
80
- | 76. | [ru/nbsp/see](../src/rules/ru/nbsp/see.js) | Non-breaking space after abbreviation «см.» and «им.» | 510 | | ✓ |
81
- | 77. | [ru/nbsp/year](../src/rules/ru/nbsp/year.js) | Non-breaking space before XXXX г. (2012 г.) | 510 | | ✓ |
82
- | 78. | [ru/nbsp/beforeParticle](../src/rules/ru/nbsp/beforeParticle.js) | Non-breaking space before “ли”, “ль”, “же”, “бы”, “б” | 515 | | ✓ |
83
- | 79. | [ru/nbsp/m](../src/rules/ru/nbsp/m.js) | m2 м², m3 м³ and non-breaking space | 515 | | ✓ |
84
- | 80. | [ru/nbsp/years](../src/rules/ru/nbsp/years.js) | г.г. гг. and non-breaking space | 515 | | ✓ |
85
- | 81. | [common/number/fraction](../src/rules/common/number/fraction.js) | 1/2 ½, 1/4 ¼, 3/4 ¾ | 610 | | ✓ |
86
- | 82. | [common/number/mathSigns](../src/rules/common/number/mathSigns.js) | != ≠, <= ≤, >= ≥, ~= → ≅, +- → ± | 610 | | ✓ |
87
- | 83. | [common/number/times](../src/rules/common/number/times.js) | x × (10 x 5 → 10×5) | 610 | | ✓ |
88
- | 84. | [ru/number/comma](../src/rules/ru/number/comma.js) | Commas in numbers | 610 | | ✓ |
89
- | 85. | [ru/number/ordinals](../src/rules/ru/number/ordinals.js) | N-ый, -ой, -ая, -ое, -ые, -ым, -ом, -ых N-й, -я, -е, -м, (25-й) | 610 | | ✓ |
90
- | 86. | [ru/money/currency](../src/rules/ru/money/currency.js) | Currency symbol ($, €, ¥, Ұ, £ and ₤) after the number, $100 100 $ | 710 | | |
91
- | 87. | [ru/money/ruble](../src/rules/ru/money/ruble.js) | 1 руб.1 | 710 | | |
92
- | 88. | [ru/date/fromISO](../src/rules/ru/date/fromISO.js) | Converting dates YYYY-MM-DD type DD.MM.YYYY | 810 | | |
93
- | 89. | [ru/date/weekday](../src/rules/ru/date/weekday.js) | 2 Мая, Понедельник 2 мая, понедельник | 810 | | ✓ |
94
- | 90. | [common/other/repeatWord](../src/rules/common/other/repeatWord.js) | Removing repeat words | 910 | | |
95
- | 91. | [ru/other/accent](../src/rules/ru/other/accent.js) | Replacement capital letters to lowercase with addition of accent | 910 | | |
96
- | 92. | [ru/other/phone-number](../src/rules/ru/other/phone-number.js) | Formatting phone numbers | 910 | | |
97
- | 93. | [common/number/digitGrouping](../src/rules/common/number/digitGrouping.js) | Divide into groups numbers with many digits | 920 | | |
98
- | 94. | [ru/optalign/bracket](../src/rules/ru/optalign/bracket.js) | for opening bracket | 1010 | | |
99
- | 95. | [ru/optalign/comma](../src/rules/ru/optalign/comma.js) | for comma | 1010 | | |
100
- | 96. | [ru/optalign/quote](../src/rules/ru/optalign/quote.js) | for opening quotation marks | 1010 | | |
101
- | 97. | [ru/typo/switchingKeyboardLayout](../src/rules/ru/typo/switchingKeyboardLayout.js) | Replacement of Latin letters in Russian. Typos occur when you switch keyboard layouts | 1110 | | ✓ |
102
- | 98. | [common/html/e-mail](../src/rules/common/html/e-mail.js) | Placement of links for e-mail | 1210 | end | |
103
- | 99. | [common/html/processingAttrs](../src/rules/common/html/processingAttrs.js) | Processing HTML attributes | 1210 | hide-safe-tags-own | |
104
- | 100. | [common/html/quot](../src/rules/common/html/quot.js) | &⁠quot; → " | 1210 | hide-safe-tags | ✓ |
105
- | 101. | [common/html/url](../src/rules/common/html/url.js) | Placement of links | 1210 | end | |
106
- | 102. | [common/html/p](../src/rules/common/html/p.js) | Placement of paragraph | 1215 | end | |
107
- | 103. | [common/html/nbr](../src/rules/common/html/nbr.js) | Replacement line break on <br/> | 1220 | end | |
108
- | 104. | [common/html/stripTags](../src/rules/common/html/stripTags.js) | Removing HTML-tags | 1309 | end | |
109
- | 105. | [common/html/escape](../src/rules/common/html/escape.js) | Escaping HTML | 1310 | end | |
5
+ | 1. | [common/other/delBOM](../src/rules/common/other/delBOM.ts) | Delete character BOM (Byte Order Mark) | -1 | start | ✓ |
6
+ | 2. | [common/symbols/arrow](../src/rules/common/symbols/arrow.ts) | -> → →, <- → ← | 110 | default | ✓ |
7
+ | 3. | [common/symbols/cf](../src/rules/common/symbols/cf.ts) | Adding ° to C and F | 110 | default | ✓ |
8
+ | 4. | [common/symbols/copy](../src/rules/common/symbols/copy.ts) | (c) → ©, (tm) → ™, (r) → ® | 110 | default | ✓ |
9
+ | 5. | [ru/symbols/NN](../src/rules/ru/symbols/NN.ts) | №№ → № | 110 | default | ✓ |
10
+ | 6. | [common/number/fraction](../src/rules/common/number/fraction.ts) | 1/2 ½, 1/4 → ¼, 3/4 ¾ | 150 | default | ✓ |
11
+ | 7. | [common/number/mathSigns](../src/rules/common/number/mathSigns.ts) | != ≠, <= ≤, >= ≥, ~= → ≅, +- → ± | 150 | default | ✓ |
12
+ | 8. | [common/number/times](../src/rules/common/number/times.ts) | x × (10 x 5 → 10×5) | 150 | default | ✓ |
13
+ | 9. | [ru/number/comma](../src/rules/ru/number/comma.ts) | Commas in numbers | 150 | default | ✓ |
14
+ | 10. | [ru/number/ordinals](../src/rules/ru/number/ordinals.ts) | N-ый, -ой, -ая, -ое, -ые, -ым, -ом, -ых → N-й, -я, -е, -м, -х (25-й) | 150 | default | ✓ |
15
+ | 11. | [common/space/replaceTab](../src/rules/common/space/replaceTab.ts) | Replacement of tab to 4 spaces | 205 | default | ✓ |
16
+ | 12. | [common/space/trimLeft](../src/rules/common/space/trimLeft.ts) | Remove spaces and line breaks in beginning of text | 206 | default | ✓ |
17
+ | 13. | [common/space/delTrailingBlanks](../src/rules/common/space/delTrailingBlanks.ts) | Remove spaces at end of line | 207 | default | ✓ |
18
+ | 14. | [common/space/trimRight](../src/rules/common/space/trimRight.ts) | Remove spaces and line breaks at end of text | 207 | default | ✓ |
19
+ | 15. | [common/space/delRepeatN](../src/rules/common/space/delRepeatN.ts) | Remove duplicate line breaks | 209 | default | ✓ |
20
+ | 16. | [common/space/delRepeatSpace](../src/rules/common/space/delRepeatSpace.ts) | Removing duplicate spaces between characters | 209 | default | ✓ |
21
+ | 17. | [common/space/afterColon](../src/rules/common/space/afterColon.ts) | space after colon | 210 | default | ✓ |
22
+ | 18. | [common/space/afterComma](../src/rules/common/space/afterComma.ts) | space after comma | 210 | default | ✓ |
23
+ | 19. | [common/space/afterExclamationMark](../src/rules/common/space/afterExclamationMark.ts) | space after exclamation mark | 210 | default | ✓ |
24
+ | 20. | [common/space/afterQuestionMark](../src/rules/common/space/afterQuestionMark.ts) | space after question mark | 210 | default | ✓ |
25
+ | 21. | [common/space/afterSemicolon](../src/rules/common/space/afterSemicolon.ts) | space after semicolon | 210 | default | ✓ |
26
+ | 22. | [common/space/beforeBracket](../src/rules/common/space/beforeBracket.ts) | Space before opening bracket | 210 | default | ✓ |
27
+ | 23. | [common/space/bracket](../src/rules/common/space/bracket.ts) | Remove extra spaces after opening and before closing bracket | 210 | default ||
28
+ | 24. | [common/space/delBeforeDot](../src/rules/common/space/delBeforeDot.ts) | Remove space before dot | 210 | default ||
29
+ | 25. | [common/space/delBeforePercent](../src/rules/common/space/delBeforePercent.ts) | Remove space before %, and | 210 | default | ✓ |
30
+ | 26. | [common/space/delBeforePunctuation](../src/rules/common/space/delBeforePunctuation.ts) | Remove spaces before punctuation | 210 | default | ✓ |
31
+ | 27. | [common/space/delBetweenExclamationMarks](../src/rules/common/space/delBetweenExclamationMarks.ts) | Remove spaces before exclamation marks | 210 | default | ✓ |
32
+ | 28. | [common/space/delLeadingBlanks](../src/rules/common/space/delLeadingBlanks.ts) | Remove spaces at start of line | 210 | default | |
33
+ | 29. | [common/space/insertFinalNewline](../src/rules/common/space/insertFinalNewline.ts) | Insert final newline | 210 | end | |
34
+ | 30. | [common/space/squareBracket](../src/rules/common/space/squareBracket.ts) | Remove extra spaces after opening and before closing square bracket | 210 | default | ✓ |
35
+ | 31. | [ru/space/afterHellip](../src/rules/ru/space/afterHellip.ts) | Space after “...”, “!..” and “?..” | 210 | default | ✓ |
36
+ | 32. | [ru/space/year](../src/rules/ru/space/year.ts) | Space between number and word “год” | 210 | default ||
37
+ | 33. | [en-US/dash/main](../src/rules/en-US/dash/main.ts) | Replace hyphens surrounded by spaces with an em-dash | 305 | default | ✓ |
38
+ | 34. | [ru/dash/main](../src/rules/ru/dash/main.ts) | Replacement hyphen with dash | 305 | default | ✓ |
39
+ | 35. | [ru/dash/centuries](../src/rules/ru/dash/centuries.ts) | Hyphen to dash in centuries | 310 | default | ✓ |
40
+ | 36. | [ru/dash/daysMonth](../src/rules/ru/dash/daysMonth.ts) | Dash between days of one month | 310 | default | ✓ |
41
+ | 37. | [ru/dash/de](../src/rules/ru/dash/de.ts) | Hyphen before “де” | 310 | default | |
42
+ | 38. | [ru/dash/decade](../src/rules/ru/dash/decade.ts) | Dash in decade | 310 | default | ✓ |
43
+ | 39. | [ru/dash/directSpeech](../src/rules/ru/dash/directSpeech.ts) | Dash in direct speech | 310 | default | ✓ |
44
+ | 40. | [ru/dash/izpod](../src/rules/ru/dash/izpod.ts) | Hyphen between “из-под” | 310 | default | ✓ |
45
+ | 41. | [ru/dash/izza](../src/rules/ru/dash/izza.ts) | Hyphen between “из-за” | 310 | default | ✓ |
46
+ | 42. | [ru/dash/ka](../src/rules/ru/dash/ka.ts) | Hyphen before “ка” and “кась” | 310 | default | ✓ |
47
+ | 43. | [ru/dash/kakto](../src/rules/ru/dash/kakto.ts) | Hyphen for “как то” | 310 | default | ✓ |
48
+ | 44. | [ru/dash/koe](../src/rules/ru/dash/koe.ts) | Hyphen after “кое” and “кой” | 310 | default | ✓ |
49
+ | 45. | [ru/dash/month](../src/rules/ru/dash/month.ts) | Dash between months | 310 | default | ✓ |
50
+ | 46. | [ru/dash/surname](../src/rules/ru/dash/surname.ts) | Acronyms with a dash | 310 | default | ✓ |
51
+ | 47. | [ru/dash/taki](../src/rules/ru/dash/taki.ts) | Hyphen between “верно-таки” and etc. | 310 | default | ✓ |
52
+ | 48. | [ru/dash/time](../src/rules/ru/dash/time.ts) | Dash in time intervals | 310 | default | ✓ |
53
+ | 49. | [ru/dash/to](../src/rules/ru/dash/to.ts) | Hyphen before “то”, “либо”, “нибудь” | 310 | default | ✓ |
54
+ | 50. | [ru/dash/weekday](../src/rules/ru/dash/weekday.ts) | Dash between the days of the week | 310 | default | ✓ |
55
+ | 51. | [ru/dash/years](../src/rules/ru/dash/years.ts) | Hyphen to dash in years | 310 | default | ✓ |
56
+ | 52. | [common/punctuation/apostrophe](../src/rules/common/punctuation/apostrophe.ts) | Placement of correct apostrophe | 410 | default | ✓ |
57
+ | 53. | [common/punctuation/delDoublePunctuation](../src/rules/common/punctuation/delDoublePunctuation.ts) | Removing double punctuation | 410 | default | ✓ |
58
+ | 54. | [common/punctuation/hellip](../src/rules/common/punctuation/hellip.ts) | Replacement of three points by ellipsis | 410 | default | ✓ |
59
+ | 55. | [common/punctuation/quote](../src/rules/common/punctuation/quote.ts) | Placement of quotation marks in texts | 410 | default | ✓ |
60
+ | 56. | [ru/punctuation/ano](../src/rules/ru/punctuation/ano.ts) | Placement of commas before “а” and “но” | 410 | default ||
61
+ | 57. | [ru/punctuation/exclamation](../src/rules/ru/punctuation/exclamation.ts) | !! ! | 410 | default | ✓ |
62
+ | 58. | [ru/punctuation/hellipQuestion](../src/rules/ru/punctuation/hellipQuestion.ts) | «?…» «?..», «!…» → «!..», «…,» → «…» | 410 | default | ✓ |
63
+ | 59. | [common/punctuation/quoteLink](../src/rules/common/punctuation/quoteLink.ts) | Removal quotes outside a link | 415 | show-safe-tags-html | ✓ |
64
+ | 60. | [ru/punctuation/exclamationQuestion](../src/rules/ru/punctuation/exclamationQuestion.ts) | !? ?! | 415 | default | ✓ |
65
+ | 61. | [common/number/digitGrouping](../src/rules/common/number/digitGrouping.ts) | Divide into groups numbers with many digits | 460 | default | |
66
+ | 62. | [common/nbsp/afterNumber](../src/rules/common/nbsp/afterNumber.ts) | Non-breaking space between number and word | 510 | default | |
67
+ | 63. | [common/nbsp/afterParagraphMark](../src/rules/common/nbsp/afterParagraphMark.ts) | Non-breaking space after | 510 | default | ✓ |
68
+ | 64. | [common/nbsp/afterSectionMark](../src/rules/common/nbsp/afterSectionMark.ts) | Non-breaking space after § | 510 | default | |
69
+ | 65. | [common/nbsp/afterShortWord](../src/rules/common/nbsp/afterShortWord.ts) | Non-breaking space after short word | 510 | default | ✓ |
70
+ | 66. | [common/nbsp/beforeShortLastNumber](../src/rules/common/nbsp/beforeShortLastNumber.ts) | Non-breaking space before number (maximum 2 digits) at end of sentence | 510 | default | ✓ |
71
+ | 67. | [common/nbsp/beforeShortLastWord](../src/rules/common/nbsp/beforeShortLastWord.ts) | Non-breaking space before last short word in sentence | 510 | default | ✓ |
72
+ | 68. | [common/nbsp/dpi](../src/rules/common/nbsp/dpi.ts) | Non-breaking space before lpi and dpi | 510 | default | ✓ |
73
+ | 69. | [common/nbsp/nowrap](../src/rules/common/nbsp/nowrap.ts) | Replace non-breaking space to normal space in tags nowrap and nobr | 510 | end | ✓ |
74
+ | 70. | [common/nbsp/replaceNbsp](../src/rules/common/nbsp/replaceNbsp.ts) | Replacing non-breaking space on normal before text correction | 510 | utf | |
75
+ | 71. | [ru/nbsp/abbr](../src/rules/ru/nbsp/abbr.ts) | Non-breaking space in abbreviations, e.g. “т. д.” | 510 | default | ✓ |
76
+ | 72. | [ru/nbsp/addr](../src/rules/ru/nbsp/addr.ts) | Placement of non-breaking space after “г.”, “обл.”, “ул.”, “пр.”, “кв.” et al. | 510 | default | ✓ |
77
+ | 73. | [ru/nbsp/afterNumberSign](../src/rules/ru/nbsp/afterNumberSign.ts) | Non-breaking thin space after | 510 | default | ✓ |
78
+ | 74. | [ru/nbsp/centuries](../src/rules/ru/nbsp/centuries.ts) | Remove spaces and extra points in “вв.” | 510 | default | ✓ |
79
+ | 75. | [ru/nbsp/dayMonth](../src/rules/ru/nbsp/dayMonth.ts) | Non-breaking space between number and month | 510 | default | ✓ |
80
+ | 76. | [ru/nbsp/initials](../src/rules/ru/nbsp/initials.ts) | Binding of initials to the name | 510 | default | ✓ |
81
+ | 77. | [ru/nbsp/mln](../src/rules/ru/nbsp/mln.ts) | Non-breaking space between number and “тыс.”, “млн”, “млрд” and “трлн” | 510 | default | ✓ |
82
+ | 78. | [ru/nbsp/ooo](../src/rules/ru/nbsp/ooo.ts) | Non-breaking space after “OOO, ОАО, ЗАО, НИИ, ПБОЮЛ” | 510 | default | ✓ |
83
+ | 79. | [ru/nbsp/page](../src/rules/ru/nbsp/page.ts) | Non-breaking space after “стр.”, “гл.”, “рис.”, “илл.” | 510 | default | ✓ |
84
+ | 80. | [ru/nbsp/ps](../src/rules/ru/nbsp/ps.ts) | Non-breaking space in P. S. and P. P. S. | 510 | default | ✓ |
85
+ | 81. | [ru/nbsp/rubleKopek](../src/rules/ru/nbsp/rubleKopek.ts) | Not once. space before the “rub” and “cop.” | 510 | default | ✓ |
86
+ | 82. | [ru/nbsp/see](../src/rules/ru/nbsp/see.ts) | Non-breaking space after abbreviation «см.» and «им.» | 510 | default | ✓ |
87
+ | 83. | [ru/nbsp/year](../src/rules/ru/nbsp/year.ts) | Non-breaking space before XXXX г. (2012 г.) | 510 | default | ✓ |
88
+ | 84. | [ru/nbsp/beforeParticle](../src/rules/ru/nbsp/beforeParticle.ts) | Non-breaking space before “ли”, “ль”, “же”, “бы”, “б” | 515 | default | ✓ |
89
+ | 85. | [ru/nbsp/m](../src/rules/ru/nbsp/m.ts) | m2 м², m3м³ and non-breaking space | 515 | default | ✓ |
90
+ | 86. | [ru/nbsp/years](../src/rules/ru/nbsp/years.ts) | г.г. гг. and non-breaking space | 515 | default | |
91
+ | 87. | [ru/money/currency](../src/rules/ru/money/currency.ts) | Currency symbol ($, €, ¥, Ұ, £ and ₤) after the number, $100 100 $ | 710 | default | |
92
+ | 88. | [ru/money/ruble](../src/rules/ru/money/ruble.ts) | 1 руб. 1 | 710 | default | |
93
+ | 89. | [ru/date/fromISO](../src/rules/ru/date/fromISO.ts) | Converting dates YYYY-MM-DD type DD.MM.YYYY | 810 | default | ✓ |
94
+ | 90. | [ru/date/weekday](../src/rules/ru/date/weekday.ts) | 2 Мая, Понедельник → 2 мая, понедельник | 810 | default ||
95
+ | 91. | [common/other/repeatWord](../src/rules/common/other/repeatWord.ts) | Removing repeat words | 910 | default | |
96
+ | 92. | [ru/other/accent](../src/rules/ru/other/accent.ts) | Replacement capital letters to lowercase with addition of accent | 910 | default | |
97
+ | 93. | [ru/other/phone-number](../src/rules/ru/other/phone-number.ts) | Formatting phone numbers | 910 | default | |
98
+ | 94. | [ru/optalign/bracket](../src/rules/ru/optalign/bracket.ts) | for opening bracket | 1010 | default | |
99
+ | 95. | [ru/optalign/comma](../src/rules/ru/optalign/comma.ts) | for comma | 1010 | default | |
100
+ | 96. | [ru/optalign/quote](../src/rules/ru/optalign/quote.ts) | for opening quotation marks | 1010 | default | |
101
+ | 97. | [ru/typo/switchingKeyboardLayout](../src/rules/ru/typo/switchingKeyboardLayout.ts) | Replacement of Latin letters in Russian. Typos occur when you switch keyboard layouts | 1110 | default | ✓ |
102
+ | 98. | [common/html/e-mail](../src/rules/common/html/e-mail.ts) | Placement of links for e-mail | 1210 | end | |
103
+ | 99. | [common/html/processingAttrs](../src/rules/common/html/processingAttrs.ts) | Processing HTML attributes | 1210 | hide-safe-tags-own | |
104
+ | 100. | [common/html/quot](../src/rules/common/html/quot.ts) | &⁠quot; → " | 1210 | hide-safe-tags | ✓ |
105
+ | 101. | [common/html/url](../src/rules/common/html/url.ts) | Placement of links | 1210 | end | |
106
+ | 102. | [common/html/p](../src/rules/common/html/p.ts) | Placement of paragraph | 1215 | end | |
107
+ | 103. | [common/html/nbr](../src/rules/common/html/nbr.ts) | Replacement line break on <br/> | 1220 | end | |
108
+ | 104. | [common/html/stripTags](../src/rules/common/html/stripTags.ts) | Removing HTML-tags | 1309 | end | |
109
+ | 105. | [common/html/escape](../src/rules/common/html/escape.ts) | Escaping HTML | 1310 | end | |