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
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const quoteLinkRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const afterColonRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const afterCommaRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const afterExclamationMarkRule: TypografRule;
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const afterQuestionMarkRule: TypografRule;
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const afterSemicolonRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const beforeBracketRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const bracketRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delBeforeDotRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delBeforePercentRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delBeforePunctuationRule: TypografRule;
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delBetweenExclamationMarksRule: TypografRule;
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delLeadingBlanksRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delRepeatNRule: TypografRule<{
3
+ maxConsecutiveLineBreaks: number;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delRepeatSpaceRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const delTrailingBlanksRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const insertFinalNewlineRule: TypografRule;
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const replaceTabRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const squareBracketRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const trimLeftRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const trimRightRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const arrowRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const cfRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const copyRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const mainRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ import './dash/index';
@@ -0,0 +1,3 @@
1
+ import './common/index';
2
+ import './en-US/index';
3
+ import './ru/index';
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const centuriesRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const daysMonthRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const deRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const decadeRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const directSpeechRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const izpodRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const izzaRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const kaRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const kaktoRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const koeRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const mainRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const monthRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const surnameRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const takiRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const timeRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const toRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const weekdayRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const yearsRule: TypografRule<{
3
+ dash: string;
4
+ }>;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const fromISORule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const weekdayRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,11 @@
1
+ import './dash/index';
2
+ import './date/index';
3
+ import './money/index';
4
+ import './nbsp/index';
5
+ import './number/index';
6
+ import './optalign/index';
7
+ import './other/index';
8
+ import './punctuation/index';
9
+ import './space/index';
10
+ import './symbols/index';
11
+ import './typo/index';
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const currencyRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const rubleRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const abbrRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const addrRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const afterNumberSignRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const beforeParticleRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const centuriesRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const dayMonthRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const initialsRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const mRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const mlnRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const oooRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const pageRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const psRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const rubleKopekRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const seeRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const yearRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const yearsRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const commaRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const ordinalsRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const bracketRule: TypografRule;
3
+ export declare const innerStartBracketRule: TypografRule;
4
+ export declare const innerEndBracketRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,4 @@
1
+ import type { TypografRule } from '../../../main';
2
+ export declare const commaRule: TypografRule;
3
+ export declare const innerStartCommaRule: TypografRule;
4
+ export declare const innerEndCommaRule: TypografRule;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ export declare function removeOptAlignTags(text: string, classNames: string[]): string;
2
+ export declare function removeOptAlignTagsFromTitle(text: string, classNames: string[]): string;
@@ -0,0 +1 @@
1
+ export {};