texsmith 0.0.2.dev0__py3-none-any.whl

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 (252) hide show
  1. texsmith/__init__.py +107 -0
  2. texsmith/_alias.py +59 -0
  3. texsmith/adapters/__init__.py +6 -0
  4. texsmith/adapters/docker.py +258 -0
  5. texsmith/adapters/handlers/__init__.py +3 -0
  6. texsmith/adapters/handlers/_assets.py +363 -0
  7. texsmith/adapters/handlers/_helpers.py +62 -0
  8. texsmith/adapters/handlers/_mermaid.py +122 -0
  9. texsmith/adapters/handlers/admonitions.py +267 -0
  10. texsmith/adapters/handlers/basic.py +228 -0
  11. texsmith/adapters/handlers/blocks.py +851 -0
  12. texsmith/adapters/handlers/code.py +309 -0
  13. texsmith/adapters/handlers/inline.py +937 -0
  14. texsmith/adapters/handlers/links.py +239 -0
  15. texsmith/adapters/handlers/media.py +380 -0
  16. texsmith/adapters/latex/__init__.py +10 -0
  17. texsmith/adapters/latex/engines/__init__.py +726 -0
  18. texsmith/adapters/latex/engines/latex/__init__.py +26 -0
  19. texsmith/adapters/latex/engines/latex/log.py +720 -0
  20. texsmith/adapters/latex/engines/latex/runner.py +28 -0
  21. texsmith/adapters/latex/engines/tectonic/__init__.py +38 -0
  22. texsmith/adapters/latex/formatter.py +297 -0
  23. texsmith/adapters/latex/latexmk.py +148 -0
  24. texsmith/adapters/latex/partials/acronym.tex +1 -0
  25. texsmith/adapters/latex/partials/add.tex +1 -0
  26. texsmith/adapters/latex/partials/addition.tex +1 -0
  27. texsmith/adapters/latex/partials/blockquote.tex +3 -0
  28. texsmith/adapters/latex/partials/callout.tex +3 -0
  29. texsmith/adapters/latex/partials/choices.tex +5 -0
  30. texsmith/adapters/latex/partials/citation.tex +1 -0
  31. texsmith/adapters/latex/partials/codeblock.tex +7 -0
  32. texsmith/adapters/latex/partials/codeblock_listings.tex +5 -0
  33. texsmith/adapters/latex/partials/codeblock_pygments.tex +5 -0
  34. texsmith/adapters/latex/partials/codeblock_verbatim.tex +12 -0
  35. texsmith/adapters/latex/partials/codeinline.tex +1 -0
  36. texsmith/adapters/latex/partials/codeinlinett.tex +1 -0
  37. texsmith/adapters/latex/partials/comment.tex +1 -0
  38. texsmith/adapters/latex/partials/del.tex +1 -0
  39. texsmith/adapters/latex/partials/deletion.tex +1 -0
  40. texsmith/adapters/latex/partials/description_list.tex +5 -0
  41. texsmith/adapters/latex/partials/enquote.tex +1 -0
  42. texsmith/adapters/latex/partials/epigraph.tex +1 -0
  43. texsmith/adapters/latex/partials/exercises_solutions.tex +7 -0
  44. texsmith/adapters/latex/partials/figure.tex +33 -0
  45. texsmith/adapters/latex/partials/figure_tcolorbox.tex +15 -0
  46. texsmith/adapters/latex/partials/footnote.tex +3 -0
  47. texsmith/adapters/latex/partials/glossary.tex +1 -0
  48. texsmith/adapters/latex/partials/heading.tex +14 -0
  49. texsmith/adapters/latex/partials/highlight.tex +25 -0
  50. texsmith/adapters/latex/partials/horizontal_rule.tex +1 -0
  51. texsmith/adapters/latex/partials/href.tex +1 -0
  52. texsmith/adapters/latex/partials/icon.tex +1 -0
  53. texsmith/adapters/latex/partials/include.tex +1 -0
  54. texsmith/adapters/latex/partials/index.tex +1 -0
  55. texsmith/adapters/latex/partials/italic.tex +1 -0
  56. texsmith/adapters/latex/partials/keystroke.tex +46 -0
  57. texsmith/adapters/latex/partials/label.tex +1 -0
  58. texsmith/adapters/latex/partials/list_acronyms.tex +5 -0
  59. texsmith/adapters/latex/partials/list_glossary.tex +8 -0
  60. texsmith/adapters/latex/partials/multicolumn.tex +3 -0
  61. texsmith/adapters/latex/partials/ordered_list.tex +5 -0
  62. texsmith/adapters/latex/partials/pagestyle.tex +1 -0
  63. texsmith/adapters/latex/partials/ref.tex +1 -0
  64. texsmith/adapters/latex/partials/regex.tex +1 -0
  65. texsmith/adapters/latex/partials/smallcaps.tex +1 -0
  66. texsmith/adapters/latex/partials/strikethrough.tex +1 -0
  67. texsmith/adapters/latex/partials/strong.tex +1 -0
  68. texsmith/adapters/latex/partials/subscript.tex +1 -0
  69. texsmith/adapters/latex/partials/substitution.tex +1 -0
  70. texsmith/adapters/latex/partials/superscript.tex +1 -0
  71. texsmith/adapters/latex/partials/tabbed.tex +3 -0
  72. texsmith/adapters/latex/partials/table.tex +48 -0
  73. texsmith/adapters/latex/partials/underline.tex +1 -0
  74. texsmith/adapters/latex/partials/unordered_list.tex +5 -0
  75. texsmith/adapters/latex/partials/url.tex +1 -0
  76. texsmith/adapters/latex/pygments.py +98 -0
  77. texsmith/adapters/latex/pyxindy.py +64 -0
  78. texsmith/adapters/latex/renderer.py +220 -0
  79. texsmith/adapters/latex/tectonic.py +366 -0
  80. texsmith/adapters/latex/utils.py +86 -0
  81. texsmith/adapters/markdown/__init__.py +342 -0
  82. texsmith/adapters/plugins/__init__.py +8 -0
  83. texsmith/adapters/plugins/material.py +174 -0
  84. texsmith/adapters/plugins/snippet.py +1734 -0
  85. texsmith/adapters/transformers/__init__.py +122 -0
  86. texsmith/adapters/transformers/base.py +140 -0
  87. texsmith/adapters/transformers/strategies.py +1456 -0
  88. texsmith/adapters/transformers/utils.py +59 -0
  89. texsmith/api/__init__.py +80 -0
  90. texsmith/api/_utils.py +56 -0
  91. texsmith/api/document.py +645 -0
  92. texsmith/api/pipeline.py +229 -0
  93. texsmith/api/service.py +648 -0
  94. texsmith/api/templates.py +287 -0
  95. texsmith/core/__init__.py +6 -0
  96. texsmith/core/bibliography/__init__.py +57 -0
  97. texsmith/core/bibliography/collection.py +354 -0
  98. texsmith/core/bibliography/doi.py +194 -0
  99. texsmith/core/bibliography/issues.py +15 -0
  100. texsmith/core/bibliography/parsing.py +45 -0
  101. texsmith/core/callouts.py +99 -0
  102. texsmith/core/config.py +191 -0
  103. texsmith/core/context.py +242 -0
  104. texsmith/core/conversion/__init__.py +103 -0
  105. texsmith/core/conversion/core.py +780 -0
  106. texsmith/core/conversion/debug.py +87 -0
  107. texsmith/core/conversion/inputs.py +474 -0
  108. texsmith/core/conversion/renderer.py +578 -0
  109. texsmith/core/conversion/templates.py +646 -0
  110. texsmith/core/conversion_contexts.py +95 -0
  111. texsmith/core/diagnostics.py +118 -0
  112. texsmith/core/exceptions.py +41 -0
  113. texsmith/core/fonts/__init__.py +3 -0
  114. texsmith/core/fragments/__init__.py +716 -0
  115. texsmith/core/fragments/base.py +117 -0
  116. texsmith/core/metadata.py +280 -0
  117. texsmith/core/mustache.py +86 -0
  118. texsmith/core/partials.py +20 -0
  119. texsmith/core/rules.py +394 -0
  120. texsmith/core/templates/__init__.py +58 -0
  121. texsmith/core/templates/base.py +343 -0
  122. texsmith/core/templates/builtins.py +68 -0
  123. texsmith/core/templates/context_usage.py +137 -0
  124. texsmith/core/templates/loader.py +303 -0
  125. texsmith/core/templates/manifest.py +861 -0
  126. texsmith/core/templates/runtime.py +347 -0
  127. texsmith/core/templates/text.py +14 -0
  128. texsmith/core/templates/wrapper.py +340 -0
  129. texsmith/core/user_dir.py +179 -0
  130. texsmith/devtools.py +28 -0
  131. texsmith/extensions/__init__.py +162 -0
  132. texsmith/extensions/index/__init__.py +21 -0
  133. texsmith/extensions/index/markdown.py +94 -0
  134. texsmith/extensions/index/mkdocs_plugin.py +136 -0
  135. texsmith/extensions/index/registry.py +57 -0
  136. texsmith/extensions/index/renderer.py +183 -0
  137. texsmith/extensions/index/templates/index.tex +1 -0
  138. texsmith/extensions/latex_raw.py +115 -0
  139. texsmith/extensions/latex_text.py +117 -0
  140. texsmith/extensions/mermaid.py +267 -0
  141. texsmith/extensions/missing_footnotes.py +125 -0
  142. texsmith/extensions/multi_citations.py +54 -0
  143. texsmith/extensions/progressbar/__init__.py +9 -0
  144. texsmith/extensions/progressbar/markdown.py +212 -0
  145. texsmith/extensions/progressbar/renderer.py +117 -0
  146. texsmith/extensions/smallcaps.py +48 -0
  147. texsmith/extensions/texlogos/__init__.py +10 -0
  148. texsmith/extensions/texlogos/markdown.py +236 -0
  149. texsmith/extensions/texlogos/renderer.py +81 -0
  150. texsmith/extensions/texlogos/specs.py +66 -0
  151. texsmith/fonts/__init__.py +57 -0
  152. texsmith/fonts/cache.py +46 -0
  153. texsmith/fonts/constants.py +60 -0
  154. texsmith/fonts/coverage.py +275 -0
  155. texsmith/fonts/downloader.py +103 -0
  156. texsmith/fonts/fallback.py +438 -0
  157. texsmith/fonts/html_scripts.py +168 -0
  158. texsmith/fonts/logging.py +127 -0
  159. texsmith/fonts/pipeline.py +338 -0
  160. texsmith/fonts/scripts.py +493 -0
  161. texsmith/fonts/ucharclasses.py +164 -0
  162. texsmith/fragments/__init__.py +11 -0
  163. texsmith/fragments/bibliography/__init__.py +65 -0
  164. texsmith/fragments/bibliography/fragment.toml +3 -0
  165. texsmith/fragments/bibliography/ts-bibliography-backmatter.jinja.tex +35 -0
  166. texsmith/fragments/bibliography/ts-bibliography.jinja.tex +10 -0
  167. texsmith/fragments/callouts/__init__.py +88 -0
  168. texsmith/fragments/callouts/fragment.toml +3 -0
  169. texsmith/fragments/callouts/ts-callouts.jinja.sty +129 -0
  170. texsmith/fragments/code/__init__.py +82 -0
  171. texsmith/fragments/code/fragment.toml +3 -0
  172. texsmith/fragments/code/ts-code.jinja.sty +140 -0
  173. texsmith/fragments/extra/__init__.py +180 -0
  174. texsmith/fragments/extra/fragment.toml +3 -0
  175. texsmith/fragments/extra/ts-extra.jinja.tex +13 -0
  176. texsmith/fragments/fonts/__init__.py +880 -0
  177. texsmith/fragments/fonts/fragment.toml +3 -0
  178. texsmith/fragments/fonts/ts-fonts.jinja.sty +292 -0
  179. texsmith/fragments/frame/__init__.py +170 -0
  180. texsmith/fragments/frame/fragment.toml +3 -0
  181. texsmith/fragments/frame/ts-frame.tex.jinja +49 -0
  182. texsmith/fragments/geometry/__init__.py +169 -0
  183. texsmith/fragments/geometry/fragment.toml +3 -0
  184. texsmith/fragments/geometry/paper.py +526 -0
  185. texsmith/fragments/geometry/ts_geometry.tex.jinja +53 -0
  186. texsmith/fragments/glossary/__init__.py +67 -0
  187. texsmith/fragments/glossary/fragment.toml +3 -0
  188. texsmith/fragments/glossary/ts-glossary-backmatter.jinja.tex +5 -0
  189. texsmith/fragments/glossary/ts-glossary.jinja.sty +28 -0
  190. texsmith/fragments/index/__init__.py +66 -0
  191. texsmith/fragments/index/fragment.toml +3 -0
  192. texsmith/fragments/index/ts-index-backmatter.jinja.tex +3 -0
  193. texsmith/fragments/index/ts-index.jinja.sty +12 -0
  194. texsmith/fragments/keystrokes/__init__.py +69 -0
  195. texsmith/fragments/keystrokes/fragment.toml +3 -0
  196. texsmith/fragments/keystrokes/ts-keystrokes.jinja.sty +20 -0
  197. texsmith/fragments/todolist/__init__.py +71 -0
  198. texsmith/fragments/todolist/fragment.toml +3 -0
  199. texsmith/fragments/todolist/ts-todolist.jinja.sty +21 -0
  200. texsmith/fragments/typesetting/__init__.py +214 -0
  201. texsmith/fragments/typesetting/fragment.toml +3 -0
  202. texsmith/fragments/typesetting/ts-typesetting.tex.jinja +81 -0
  203. texsmith/index.py +26 -0
  204. texsmith/plugins/__init__.py +14 -0
  205. texsmith/progressbar.py +8 -0
  206. texsmith/quotes.py +40 -0
  207. texsmith/smart_dashes.py +66 -0
  208. texsmith/templates/__init__.py +3 -0
  209. texsmith/templates/article/README.md +33 -0
  210. texsmith/templates/article/__init__.py +281 -0
  211. texsmith/templates/article/template/manifest.toml +125 -0
  212. texsmith/templates/article/template/mermaid-config.json +18 -0
  213. texsmith/templates/article/template/template.tex +74 -0
  214. texsmith/templates/book/README.md +26 -0
  215. texsmith/templates/book/__init__.py +75 -0
  216. texsmith/templates/book/overrides/codeblock.tex +7 -0
  217. texsmith/templates/book/overrides/codeinline.tex +1 -0
  218. texsmith/templates/book/template/fixtoc.sty +81 -0
  219. texsmith/templates/book/template/manifest.toml +198 -0
  220. texsmith/templates/book/template/template.tex +314 -0
  221. texsmith/templates/common/__init__.py +1 -0
  222. texsmith/templates/common/latexmkrc +46 -0
  223. texsmith/templates/letter/README.md +59 -0
  224. texsmith/templates/letter/__init__.py +495 -0
  225. texsmith/templates/letter/demo.md +31 -0
  226. texsmith/templates/letter/fonts/modernline bold.otf +0 -0
  227. texsmith/templates/letter/fonts/modernline.otf +0 -0
  228. texsmith/templates/letter/manifest.toml +197 -0
  229. texsmith/templates/letter/template/callouts.jinja.sty +290 -0
  230. texsmith/templates/letter/template/template.tex +123 -0
  231. texsmith/templates/snippet/README.md +21 -0
  232. texsmith/templates/snippet/__init__.py +80 -0
  233. texsmith/templates/snippet/template/manifest.toml +66 -0
  234. texsmith/templates/snippet/template/template.tex +47 -0
  235. texsmith/texlogos.py +15 -0
  236. texsmith/ui/__init__.py +6 -0
  237. texsmith/ui/cli/__init__.py +22 -0
  238. texsmith/ui/cli/_options.py +338 -0
  239. texsmith/ui/cli/app.py +65 -0
  240. texsmith/ui/cli/bibliography.py +300 -0
  241. texsmith/ui/cli/commands/__init__.py +14 -0
  242. texsmith/ui/cli/commands/render.py +1128 -0
  243. texsmith/ui/cli/commands/templates.py +397 -0
  244. texsmith/ui/cli/diagnostics.py +36 -0
  245. texsmith/ui/cli/presenter.py +663 -0
  246. texsmith/ui/cli/state.py +263 -0
  247. texsmith/ui/cli/utils.py +235 -0
  248. texsmith-0.0.2.dev0.dist-info/METADATA +187 -0
  249. texsmith-0.0.2.dev0.dist-info/RECORD +252 -0
  250. texsmith-0.0.2.dev0.dist-info/WHEEL +4 -0
  251. texsmith-0.0.2.dev0.dist-info/entry_points.txt +22 -0
  252. texsmith-0.0.2.dev0.dist-info/licenses/LICENSE.md +21 -0
@@ -0,0 +1,252 @@
1
+ texsmith/__init__.py,sha256=Xjf7iidgABYU7iml4VVqXVocZJ107ylQAER3FJJsbpw,2549
2
+ texsmith/_alias.py,sha256=plz2MNbzkj-nwleDevkqn6Km3v9wZsbuHY02NRLGSeo,2177
3
+ texsmith/devtools.py,sha256=pK4rmJa9x18K7dSIfpNiNA-KKceIiGZg7WWlhpjWpqk,765
4
+ texsmith/index.py,sha256=7NdPc4HvyBXsBsr103MgDHRHi_gwqDgb31_-LwkrBv8,604
5
+ texsmith/progressbar.py,sha256=tGtBlQDNZ3J4eCFaYQh07j7OWt7KauqgggVwlRzcYkY,270
6
+ texsmith/quotes.py,sha256=sNZcZv1g9swzcfaGuAD3vPAZWtHLQ8iajf-oMysjxeA,1297
7
+ texsmith/smart_dashes.py,sha256=EeaiRl2PB3DJRJYFGlDYHMn-d86HvNZrnozuNqrQWk8,1997
8
+ texsmith/texlogos.py,sha256=XbpF4oYRUYDTvbLyY7dJefuitvxRzODoCA7Xyj3kHzM,379
9
+ texsmith/adapters/__init__.py,sha256=QzaZjD4fZDwQhzeXyO6wy4krWJXZ7Bw9cxdIfxUd2BQ,98
10
+ texsmith/adapters/docker.py,sha256=uDP0f5k5N9rhKsjQy56VuyRJR3lGH4IOhPjrg275z9Y,7640
11
+ texsmith/adapters/handlers/__init__.py,sha256=NTwMy1FIlIXcWk2bpHQ3oZdEJQNW7PJsZ8C2FLEFfUI,106
12
+ texsmith/adapters/handlers/_assets.py,sha256=ojMebhfqIPxk1e-LoGnk44TWZCNqntPvxM1soP-Qkbw,12012
13
+ texsmith/adapters/handlers/_helpers.py,sha256=UOmpASKDd9h29Qslw-dwD6vzuXmU9xShNu6pVzYFgxU,1905
14
+ texsmith/adapters/handlers/_mermaid.py,sha256=h9GKCRpj6wjogsYGlf6jUy-JXxMKBpJ-mvnv0gZgLgc,3265
15
+ texsmith/adapters/handlers/admonitions.py,sha256=V4Wf3kWGUeK6Ss2WzqR4wCfmv6b205dvrAAd2FGeJFQ,8806
16
+ texsmith/adapters/handlers/basic.py,sha256=MwclGN-f5DDlSp0owXENHd2Kw-hfp9aAvCKRIv-C-tc,8543
17
+ texsmith/adapters/handlers/blocks.py,sha256=1hT884VqO7zfMseFuwjS9oY4aEDQBNQ7TIfftdoLbJo,31521
18
+ texsmith/adapters/handlers/code.py,sha256=i8EO104Oy00GD59tpZ3yOZ10cAo7yf2ne-TQfAEOt9E,10020
19
+ texsmith/adapters/handlers/inline.py,sha256=DrxqnZ9r330jQ-3OIswY7DpIRIEr29CxQ76ARxFgVlE,29861
20
+ texsmith/adapters/handlers/links.py,sha256=HTzli3sJK4oCD2k1WE7gDhODWupuXJLyxG-oG3Wtz3I,8216
21
+ texsmith/adapters/handlers/media.py,sha256=gecPt3NA3JX-7FBEKi59qpKjFBJZjtemKjY2CfL5qeA,13379
22
+ texsmith/adapters/latex/__init__.py,sha256=90-Wlga8EdnjsZnzjxC_754GKCpgUW7ENRaz44cUbTQ,303
23
+ texsmith/adapters/latex/formatter.py,sha256=26unfboYQqb89m2mQ3iy1YcEHD4ZsuHyCEh1LwgZzOE,11521
24
+ texsmith/adapters/latex/latexmk.py,sha256=GhMRCqlgwiQAb9xJdBqP6fkDgvbkGk0nBJd5tAaN5II,4524
25
+ texsmith/adapters/latex/pygments.py,sha256=-C4lqrUSqlfTy3HmvA2zAeS4dMFmxrIHqJX8c-E1u9E,3194
26
+ texsmith/adapters/latex/pyxindy.py,sha256=iKPUhYj1wBY-RQOTz-8AU02DuVQPMJZZJA5lupCWh-g,2105
27
+ texsmith/adapters/latex/renderer.py,sha256=7tqTAbdAXUGbissPTPd5kVShY1tPMRMYaKg6n03Kts8,7932
28
+ texsmith/adapters/latex/tectonic.py,sha256=iPBrRvTxm-hpUzOQTbfPlOJSbIsTsy3XyCrXgcIBt10,13567
29
+ texsmith/adapters/latex/utils.py,sha256=S6tiKetgCdSDyDTg_EG8phgOy5Bnfx7dLzQd_bHw3iY,2387
30
+ texsmith/adapters/latex/engines/__init__.py,sha256=V_LCvQ488u_JZxZmCmxZg4ke3SQRmkv_umxEVcEZ97Q,20542
31
+ texsmith/adapters/latex/engines/latex/__init__.py,sha256=kIjT5iTAujrmdfFci6_Kvon5piTQzaOB1WhyzqFh67c,517
32
+ texsmith/adapters/latex/engines/latex/log.py,sha256=m4PMPp_jGDbHfi7Hf7l_J4mKoDHC9b05cz1ZwYXmdDc,24831
33
+ texsmith/adapters/latex/engines/latex/runner.py,sha256=e6wy2XF-zq5M8ziB48z_qdcc13la8mFOPYgtQJpuxuc,633
34
+ texsmith/adapters/latex/engines/tectonic/__init__.py,sha256=PkF67PST_4UYgqQ0txLGCBVx7aX9KnckJ0dovjLwVks,954
35
+ texsmith/adapters/latex/partials/acronym.tex,sha256=1mL2BVHmM2erIzYYMDf4NpS-KpKZ3P1RL_b6gcAS2gg,17
36
+ texsmith/adapters/latex/partials/add.tex,sha256=Pg1BCuXurR9FXSBYS5W7EkwROcIt2V6uwD2tHNkOxqM,46
37
+ texsmith/adapters/latex/partials/addition.tex,sha256=2ZimpSvXhRK5ojjBnrvt5j5Db_p9iR2ZgToZ1-pcgQI,47
38
+ texsmith/adapters/latex/partials/blockquote.tex,sha256=WRk8KANfl3SNFlIv5c3Y2IBBmympO8NIWTFryuxNynI,56
39
+ texsmith/adapters/latex/partials/callout.tex,sha256=5glmZixJPHzBlJ4zkBR3ZfbzbjK3JmbbuPp_TnrqfjA,74
40
+ texsmith/adapters/latex/partials/choices.tex,sha256=CWcA-v3ms0MGNnyNreRBQsS2rCPEXaSJwRiH99Gwvus,143
41
+ texsmith/adapters/latex/partials/citation.tex,sha256=GLvY5IeXSJSgfLikD2SP58htjjIfjISvd8zpq9MmOnI,17
42
+ texsmith/adapters/latex/partials/codeblock.tex,sha256=YreO6bAWKW8IRwvpj1NBAWcyJmm_uctvFb10Y2Acp9U,402
43
+ texsmith/adapters/latex/partials/codeblock_listings.tex,sha256=xme1ZF4b1J-TLlNZreUW4aEjPcl5d0jukjNXAIyKp7o,286
44
+ texsmith/adapters/latex/partials/codeblock_pygments.tex,sha256=XopIjfEEkhI6F5INZbpj1TwWzW1HSp8WuIJFUytQn4s,251
45
+ texsmith/adapters/latex/partials/codeblock_verbatim.tex,sha256=jK5aKoG-kx0b-3mHsen2F8xLOZjq0dO4FxbcAv82rvY,462
46
+ texsmith/adapters/latex/partials/codeinline.tex,sha256=J5ia8VrFu3wEwylzUi1VH7HX5BjOHuwuC7febMJP0Ro,133
47
+ texsmith/adapters/latex/partials/codeinlinett.tex,sha256=HpRKQH3_4MHIqhR76Sb_qCqlxd0iG91rzalPDYcKzvE,20
48
+ texsmith/adapters/latex/partials/comment.tex,sha256=yixhQC3BpUGHH4folA2us0Uy_hzTf1turckJW6L7OY4,50
49
+ texsmith/adapters/latex/partials/del.tex,sha256=wXmEg1hzsYBtTPoNEhXJJxiNFumtj5-Sof2sm36sz3E,17
50
+ texsmith/adapters/latex/partials/deletion.tex,sha256=nQuiC-eqpUnmXvuKu7VB1TeIKsFiex5EEh1OuL_gO_c,18
51
+ texsmith/adapters/latex/partials/description_list.tex,sha256=Sz8cbpMfRPDozN-oqDdJdVogDenj0UKEsq3JYF9qiak,126
52
+ texsmith/adapters/latex/partials/enquote.tex,sha256=qp4ckPx_-OOoFpnrJThbS63DIrdqIvQeQVorjWNMsf0,21
53
+ texsmith/adapters/latex/partials/epigraph.tex,sha256=flh-G5gumxYT1BJKyWozB1VoU-nBFVew9UvWn5P8ZMc,61
54
+ texsmith/adapters/latex/partials/exercises_solutions.tex,sha256=iW6IcTQPON2TJqXWihqlify4nn0Ri818RQAenR_njKQ,183
55
+ texsmith/adapters/latex/partials/figure.tex,sha256=dYSN6guwyy4ZEMnqnmwgveI6vhTJngz0Sp4hgEMZcJI,2014
56
+ texsmith/adapters/latex/partials/figure_tcolorbox.tex,sha256=OCwT27FlO_waIYc5qgFQZnMg5yn70Wxh84LrxO_xgao,825
57
+ texsmith/adapters/latex/partials/footnote.tex,sha256=cNnjAND5ZG5edIhkfaGk7TqwB_TAqu531_WvRStuW34,120
58
+ texsmith/adapters/latex/partials/glossary.tex,sha256=Q1CPUtJlreTq59L87h8hM78HPRWlNXLQ6nntfXGf3ao,16
59
+ texsmith/adapters/latex/partials/heading.tex,sha256=95uHdO-b_dTW0VjWK7IAfooVi48inqpDUPgnpFQXU20,555
60
+ texsmith/adapters/latex/partials/highlight.tex,sha256=3IEkKV4snD9-S_cnqAzRI8PsuoDAdrjYjfWHcSRopO8,626
61
+ texsmith/adapters/latex/partials/horizontal_rule.tex,sha256=IjY6kwYZK6kvj_W_tEEjuZCW4e8mkqMobnUeMZGxFh4,38
62
+ texsmith/adapters/latex/partials/href.tex,sha256=E-6kxCDVN-6Kg-6kEfnMh5fy_bBtXhKlBtHJgRvvzss,29
63
+ texsmith/adapters/latex/partials/icon.tex,sha256=TJxgraraTSY0n5AjdXLXJasDwZd-uSo0JB487cwHFOM,40
64
+ texsmith/adapters/latex/partials/include.tex,sha256=sSYsvfn4ntsUMWnTM7I6DJQW6OOuCyhiQHY8gwFR4IU,33
65
+ texsmith/adapters/latex/partials/index.tex,sha256=4llIryovDp1sPNkdUE9RDEESGuDS0WwwK2DEEc1YDH0,216
66
+ texsmith/adapters/latex/partials/italic.tex,sha256=v1LCdW4rl5Hcu__QOYvHJglp-Yj5QurO9opzblh3tew,18
67
+ texsmith/adapters/latex/partials/keystroke.tex,sha256=Kq4bStdhmUwLCyt7UK-CI9miwZh-e9kWt2JyJocufDU,1031
68
+ texsmith/adapters/latex/partials/label.tex,sha256=d6ngNVhhHc0N783P3JwgBueVbWtf6pkdPJYwlvFpUek,18
69
+ texsmith/adapters/latex/partials/list_acronyms.tex,sha256=c6AgvD1KzuoEOHUKt-fyi4XypOATe1bla3dhBwU6S0g,230
70
+ texsmith/adapters/latex/partials/list_glossary.tex,sha256=uB67-XkWuVMXN4wZEWCiWYVZs2FL-UhlXU43OVyk14c,182
71
+ texsmith/adapters/latex/partials/multicolumn.tex,sha256=9sV8T3LqKntz1Jh_R7K7Gyx6BOtH7Tm75AMuNtsOjcc,59
72
+ texsmith/adapters/latex/partials/ordered_list.tex,sha256=rMDcGbSlKaGB5PR-gUOdf2LzfzxsImEPVfR5haGdcQg,97
73
+ texsmith/adapters/latex/partials/pagestyle.tex,sha256=iodSgePA0fEr1Shmxbk2wRO_5ji19X4TJGNxG6Cl-yg,27
74
+ texsmith/adapters/latex/partials/ref.tex,sha256=quuVPT5nBX14k31ydef2a8OW6mj-_G24sbs1nZs7Qvo,27
75
+ texsmith/adapters/latex/partials/regex.tex,sha256=SCX4OwQLKZ2wvMGSzpvocWpgj7VPDLeNd_V4hx1UoUE,48
76
+ texsmith/adapters/latex/partials/smallcaps.tex,sha256=MyRUft76xB3TbU6imBvHjdq7WGWZiOb3PukfQhbkvAE,20
77
+ texsmith/adapters/latex/partials/strikethrough.tex,sha256=FXYZmnN5URb3anfYmlEYepBiJIM0hgy_9e3Btm7OwbY,18
78
+ texsmith/adapters/latex/partials/strong.tex,sha256=nziVaJY4IUrdCssHbC3nnxQeADqDHp5s_hIVmyyf91A,20
79
+ texsmith/adapters/latex/partials/subscript.tex,sha256=DdFIif4MojOGg7pt_18mUIVw_68SbigO5Lg2Md_cCTI,26
80
+ texsmith/adapters/latex/partials/substitution.tex,sha256=HVFCLIJa2Kxuc5cpviCVmsXnoW3ohEoUTSgAAviKoq8,49
81
+ texsmith/adapters/latex/partials/superscript.tex,sha256=kxvyF2y86rovS0wYMeWu_MSXdcDWfILaCgJC0hpNI9o,28
82
+ texsmith/adapters/latex/partials/tabbed.tex,sha256=kvnkp5ONQYyPOE-Ogq0zavJoL5fvMJ735gBSrEVJUPo,33
83
+ texsmith/adapters/latex/partials/table.tex,sha256=32f6fUWW-9a84oB7sPqCafDaM9w2xl5HwxHtpW7wZ0g,1114
84
+ texsmith/adapters/latex/partials/underline.tex,sha256=EygysORYxMBOHf3ETH-Ha3GNH3cWae1agjfbQUxTlVw,19
85
+ texsmith/adapters/latex/partials/unordered_list.tex,sha256=2bul23DZLAMXolFCxRsig0klgrNWPLOv7ak-0SjoDCc,96
86
+ texsmith/adapters/latex/partials/url.tex,sha256=gcnFPV1io_P8Fb_TOnFYXivH2XKJI73TBb3vWjYyvKk,28
87
+ texsmith/adapters/markdown/__init__.py,sha256=F-WQvj6S_0y13LwakPMB1muFLXVaiQJT7meT14Asbag,10147
88
+ texsmith/adapters/plugins/__init__.py,sha256=hPQh2E_arQ7tAMnmsi5TW_0wwPyrt5amBVzL5xBJa8w,173
89
+ texsmith/adapters/plugins/material.py,sha256=7A8NXvZHDHsyHpRMpVXU_eYrEfUkHSIajLFaQlgx7uY,5436
90
+ texsmith/adapters/plugins/snippet.py,sha256=NF_q8-3e4jrAbXq_usdZBw2SwXAHFigJhxe_Xz14kwk,58107
91
+ texsmith/adapters/transformers/__init__.py,sha256=6fssFeP489xHnQJjcqYKIzkooCCEKdXDwarJFegDD0c,3944
92
+ texsmith/adapters/transformers/base.py,sha256=E-oTvv3YOWn6ZP_J1PqodW3c6zUyxSdmJtUjl7UEWDg,4824
93
+ texsmith/adapters/transformers/strategies.py,sha256=iA3sTBcKKWQ8YNY8Sytw17hH1XG7u1wxTy2KiwQJIq8,53995
94
+ texsmith/adapters/transformers/utils.py,sha256=zGpGQ3HYF7aSIAaJ_Dc_c-RSiHkru3R2fbLvgstlv_4,2087
95
+ texsmith/api/__init__.py,sha256=vQVBs-VNXI9TDdc5nkzv1b0wd1G-ApfEH-v73hrjr74,2522
96
+ texsmith/api/_utils.py,sha256=8AARDccf0xcgywSr-fMbH2cTpk--MSjotadpB2EKD5s,1908
97
+ texsmith/api/document.py,sha256=O6A2Xnn2R4cCYZhCU9hJX_lOBT1tB4Ml-ZjYMxVz5-o,23007
98
+ texsmith/api/pipeline.py,sha256=eJbFFhYbndjTtdmQXWuH3bvKwRZxXzpt05O_Bn4uXwE,8904
99
+ texsmith/api/service.py,sha256=wqXXiNk9mHA3lxcuEHq1KbJ8LYkMOgFmmTUbS-qEryY,23582
100
+ texsmith/api/templates.py,sha256=0YOTA5-Y2zHi7_34vgIMcAtK2sp4id5O-c9C4KY9-bU,11587
101
+ texsmith/core/__init__.py,sha256=PwKgGU37awWpnlgQFsUxyQmNzJHAyntocdwNqtVQ1-s,89
102
+ texsmith/core/callouts.py,sha256=brTsFOTyC55p1Qf3kRsF98vf1SweM2Lgp0YsjfG5uaQ,4115
103
+ texsmith/core/config.py,sha256=YC0Jq_yI8XWwTSnsoZrWYB6JPyNLGgg8fSzt5ljIC-g,5857
104
+ texsmith/core/context.py,sha256=iAccGpz_9LS_NjHBnp5SjdysFMvX5BLHq_MrQdEjW-8,9618
105
+ texsmith/core/conversion_contexts.py,sha256=mH4C7DNHjE8RkA4tnY75RJddgojujPhzNvWXHEonF9Q,2760
106
+ texsmith/core/diagnostics.py,sha256=FGSoM63v1Nj_Ev2T9t0iNGX6EaX2y3dF-8ql2eU-LdI,3742
107
+ texsmith/core/exceptions.py,sha256=igP9b-Pk728_2Fj8J4oa6vCfssSbo-D_4lI9zE0BX-s,1372
108
+ texsmith/core/metadata.py,sha256=mIvI1EsT7Mf9SnI7krz6f6dMfopQYiaz0nzqC0Kzy6o,9171
109
+ texsmith/core/mustache.py,sha256=ObiGRE2-VMjTs_wNo6QAsJ9kUBdBnKrB4Qx7hVF1C1c,2771
110
+ texsmith/core/partials.py,sha256=aAJG3ulaKkOfIuY37nfjl8Mjfc4NUI4txAG-ikueMJo,538
111
+ texsmith/core/rules.py,sha256=KdZUdO_nr3Qk7q3dI7fokl6uEng1alngWVcZzcOMCB8,14404
112
+ texsmith/core/user_dir.py,sha256=LM0-cSMBErYgS8B8gLvr3nwY1_CVPSdtZM_Ml50AIQY,5777
113
+ texsmith/core/bibliography/__init__.py,sha256=1g3qoiDVQ1Eq2tw-cXJpVyhyCLSTm9pdXY6-7MIRZH0,2208
114
+ texsmith/core/bibliography/collection.py,sha256=XUiSNlKybOxXnoOt1O7ABew0dXoGASGAXBFX_m-7y-I,12530
115
+ texsmith/core/bibliography/doi.py,sha256=Sm8mtdgNruPCyEHO1xnmd48gHa8zqjZ-zqFnFwxgP2k,6617
116
+ texsmith/core/bibliography/issues.py,sha256=ddFB0GV_QWqmx17P3MHCfZtNNj4Knix5NFltsvsepYA,359
117
+ texsmith/core/bibliography/parsing.py,sha256=JBBbbqfhW9GLmlt_0UrUm9QqjshnIT3Tlumn52GMpcA,1632
118
+ texsmith/core/conversion/__init__.py,sha256=EfkeQ0oeNEEd5HWh8UeuDEw_q-cOec7oL3la8k70qVk,2490
119
+ texsmith/core/conversion/core.py,sha256=dVzZyzGAFb4BIYlfb7myc6JaYivMeaHMVFWwJ4LnnMo,28522
120
+ texsmith/core/conversion/debug.py,sha256=IWvHZ0XR_zVteZz_3B13oGeSVUm12FwWf9f7OLwlL4c,2726
121
+ texsmith/core/conversion/inputs.py,sha256=8EPqGeZdAh5iXoUDDeCP6z3PSRcpobIvL1KKi7tAkF0,15382
122
+ texsmith/core/conversion/renderer.py,sha256=zeLKdVcVkjzMOVsBe7HhGuLEoXteVWaAObliVhUk0sI,24364
123
+ texsmith/core/conversion/templates.py,sha256=44IrfEXQPmTgBXxM0rLHTDbaN0cSavjsob3-XWH7d7w,22425
124
+ texsmith/core/fonts/__init__.py,sha256=2Pk96bvcLyXRNi33KYKV1xsJ8Hsso8XRV37efmHPYhk,79
125
+ texsmith/core/fragments/__init__.py,sha256=3FwMFSs1okEQyJBgG-u4e4UuFTs8qFPBAjMx2F4_v_g,28975
126
+ texsmith/core/fragments/base.py,sha256=V9SFDEUQJ1O_JRGex8bvNtQkYkVMBhfNOohzgFhbw4A,4153
127
+ texsmith/core/templates/__init__.py,sha256=luyNjtwQe8WLM6Wccn3orhpw1xPoxFaxyPv4Qu2oI0U,1548
128
+ texsmith/core/templates/base.py,sha256=1VvS8oYu0bigAr9vc0B6xkp6JwOXH50JwcsoiQW3Kt8,12377
129
+ texsmith/core/templates/builtins.py,sha256=1QFpA-EkH_or6bNuN3opmwnHcCtg-JvfX0jidiqXKa4,1879
130
+ texsmith/core/templates/context_usage.py,sha256=UEXxWXs0zRmCTBkvHOsJe2xoNxyBZD4ucaWC-3nMB28,5057
131
+ texsmith/core/templates/loader.py,sha256=NOoViVyq4senh4Tb1Tax3CDi5fIGk_1PIW4xr24tN30,10328
132
+ texsmith/core/templates/manifest.py,sha256=TqZ4wL4vR8B_-GqaLe9sXHmk6tV143lgDTX3bh9syco,28437
133
+ texsmith/core/templates/runtime.py,sha256=PEatslq8w00wDMF3uHx0r2VqeNb2Ni-RoBw_pKyoPqo,11749
134
+ texsmith/core/templates/text.py,sha256=SzBzlwhGDoqzLneACwXjCtVcrISlziZRNyn2YZvJF0g,357
135
+ texsmith/core/templates/wrapper.py,sha256=yRRUup3tWgsvSkvlTy8_ABkFkLq2AeqB0FSK1Xl0WuE,14444
136
+ texsmith/extensions/__init__.py,sha256=7JHWKe5g-HDI6OLiZDuOYOogRuPfmndYhdgt0bfGqR8,5730
137
+ texsmith/extensions/latex_raw.py,sha256=g_9a8n4_frQrAjq1hf9zKrlFu6m83_iaMf0S8XkBjK4,3818
138
+ texsmith/extensions/latex_text.py,sha256=pXqOeXGZTT1DFLn6CwIakRCO0gsK8SkMf3PCxzppStE,3720
139
+ texsmith/extensions/mermaid.py,sha256=Iqb6kTgtcdX5h7k05mTrrIPvFdYrln8FIl6S5dX7itQ,8656
140
+ texsmith/extensions/missing_footnotes.py,sha256=IXqc1cQnUtotFuHowRSVMRcGlNyuzAK7azwwmsb96t8,4701
141
+ texsmith/extensions/multi_citations.py,sha256=T7VA6oSXG5CEoZqcc65FvOBdWw1Atq3O6jMl-wwpxuk,1662
142
+ texsmith/extensions/smallcaps.py,sha256=rNjo6s5twasYtMkoflLkVquspxU3pqn5W6OBzr6UukE,1718
143
+ texsmith/extensions/index/__init__.py,sha256=-cYcSwUNH0m9yI2Svihs4zNzwcaNdEN8Oxz0FvCdyw0,410
144
+ texsmith/extensions/index/markdown.py,sha256=A1bAy7CW5pAqG2VcHYMPhx0gEligcOxtmUcNXQQe3YM,2934
145
+ texsmith/extensions/index/mkdocs_plugin.py,sha256=zqVL9p9rTi9nMlDbJfjB7sw4mPGWraBG0gbmHdgNkWM,4574
146
+ texsmith/extensions/index/registry.py,sha256=h2IT1is3yJUw1AAX1LUN4e6hdmsvbeepUJ2erOxlM2Q,1602
147
+ texsmith/extensions/index/renderer.py,sha256=cNCyAYxGEdWaSAVkdIzWk1ylKsdRAXUygKZDuRfV5u8,5882
148
+ texsmith/extensions/index/templates/index.tex,sha256=8bzfOHSnoL11Tn3xB8dpl20p_O5XUNbY6jxtCtpfPJk,313
149
+ texsmith/extensions/progressbar/__init__.py,sha256=NIbyTvHicTZxjBQWaIYN83gCHNkLiRDDAB8OpEowxeE,289
150
+ texsmith/extensions/progressbar/markdown.py,sha256=z9TPwLQIq9DPx7_gij_uVC3r9NwGvOg1yihNE1HXyXA,6328
151
+ texsmith/extensions/progressbar/renderer.py,sha256=XnrC-kl-2DqAfSeA3NrCtPvxFCYXnsEtegNPu8lXmDM,3752
152
+ texsmith/extensions/texlogos/__init__.py,sha256=T49Egi_sYHxZjAB2Zazzbiu8MGg_KciTGKYz7OAzQVo,342
153
+ texsmith/extensions/texlogos/markdown.py,sha256=DYds12NCpFKIpzVuUpTfMxjzYAsm_Iq2u9Rtb2rS2aQ,7597
154
+ texsmith/extensions/texlogos/renderer.py,sha256=r-dCAn2hv15LWotZCx8ZrCC8QwOX9Ka1OujPBKu19lY,2244
155
+ texsmith/extensions/texlogos/specs.py,sha256=UNpmAXBINeS1UwQUr7lfIJhaarGfQ_zX2hzUlAfQT1w,1610
156
+ texsmith/fonts/__init__.py,sha256=azwZzv_Hfjm8w7aYTpfjxGO5FP0RLSR_gdREC8FzE3Y,2045
157
+ texsmith/fonts/cache.py,sha256=BVFGk-xQ52paD6f8szFOoEKyHhYYv56lR7rrPnX7MoM,1435
158
+ texsmith/fonts/constants.py,sha256=GUGrqtxvzmsPKvfVeFI5KaQlSMaqHaxGDXoVlciO-Tg,1663
159
+ texsmith/fonts/coverage.py,sha256=j8gDNxTIRB2azj5mnROwKh0A8tcUcSKsu3oysVwjHqo,9844
160
+ texsmith/fonts/downloader.py,sha256=P8IvLTFU89FgVYhlekeG3ejSVjzJq_MFsN9dT87EqxU,3660
161
+ texsmith/fonts/fallback.py,sha256=tM9TDkctAjGy1wq-htcS20iLrCtj0_LtBGgfnlhP978,15215
162
+ texsmith/fonts/html_scripts.py,sha256=uD8BipuEq9FtPWM9fR1mWCyw6DruGTMU9VwMoEgoQX8,5765
163
+ texsmith/fonts/logging.py,sha256=nj4OyAX1OshOyPUrXWKI6VKH2DhuW1dier-8wTuGrJs,3902
164
+ texsmith/fonts/pipeline.py,sha256=qrstYCMMsHtjn-ygg3dpuWPZwM1_PVdo6wPX1NcBjR4,13014
165
+ texsmith/fonts/scripts.py,sha256=cfc88RqnxuVG-3zKlTOlu08cT5jaCfzYvzOSjyBXpac,18403
166
+ texsmith/fonts/ucharclasses.py,sha256=sfLK_W_iHxvmdY0ieGDTcLPJRL3Fyz2xMQeTQGYgf4E,6305
167
+ texsmith/fragments/__init__.py,sha256=ZsDK_XZOHcgMNxruInEQx0EnZTXuhnHfPD3tqBnvjbs,297
168
+ texsmith/fragments/bibliography/__init__.py,sha256=5bX5K3LLtVrRDDyO5hOMpvx-P00wRt7OAdMaLXWoNwQ,2102
169
+ texsmith/fragments/bibliography/fragment.toml,sha256=N5NeiVJhCNpQKDhICak6cmUpRBX7gAzOMepmOX0VVBE,155
170
+ texsmith/fragments/bibliography/ts-bibliography-backmatter.jinja.tex,sha256=Ozk2lYutWufer5YiUOunNrtfsRKzeFN_L8-IG7KUTt8,984
171
+ texsmith/fragments/bibliography/ts-bibliography.jinja.tex,sha256=2B1YtxNEHR-Agag4cGYrUQ3fif21XZ5lUrMG5yBfg5M,252
172
+ texsmith/fragments/callouts/__init__.py,sha256=bBQdLt_Q_bYMAlevF2KKzR23K2QXy2gERid2wkXt43c,2708
173
+ texsmith/fragments/callouts/fragment.toml,sha256=mNomOUBMIn8EyEbC0RQNkqYA3arZ-u6v8Y2HRniKRFE,143
174
+ texsmith/fragments/callouts/ts-callouts.jinja.sty,sha256=2gxplBQSgPhjeYRlokf48gq7K4jnlCbtU6yhxvAv7yg,3418
175
+ texsmith/fragments/code/__init__.py,sha256=kng4256PREMCeyDQjRWScylXAhJwRUKusijcgElzCd8,2575
176
+ texsmith/fragments/code/fragment.toml,sha256=cTmdZRdpXa20_5abgx7ohwqZniCZb5RhfIm8oYIJsjU,138
177
+ texsmith/fragments/code/ts-code.jinja.sty,sha256=XtoCjN1V9RTBfsviV_Jtj2fK0NqkeoajtAemX_xy15U,3020
178
+ texsmith/fragments/extra/__init__.py,sha256=EOfDct_Y7LwLzDhfQFqp0-bmybg71kp_z9tcQSAAAsA,6147
179
+ texsmith/fragments/extra/fragment.toml,sha256=v6-vHmgk0UIwev6u1RI-duejM4btGl5Hva113BAEcpg,126
180
+ texsmith/fragments/extra/ts-extra.jinja.tex,sha256=nfFGTz8SFBW7l6kH4I1KlinzDOm2UgoFjv6y79aM0TE,469
181
+ texsmith/fragments/fonts/__init__.py,sha256=iHdGusZ8Or70WbHPNXb2iP1AS2Dik8Zog1qH5fIzpos,33526
182
+ texsmith/fragments/fonts/fragment.toml,sha256=-vgL-G65oCmpvRb_LlUi_xWPMWGvHaXnSHZuNcYcKeQ,152
183
+ texsmith/fragments/fonts/ts-fonts.jinja.sty,sha256=ZZ62Brks5ux4kcX61uc2YNHZnePlatVAXy97UH5-Nro,9179
184
+ texsmith/fragments/frame/__init__.py,sha256=8KnAEj6OzMptiIzzwRhBjhkc_WWCkqNae4WsWRR_KLA,6044
185
+ texsmith/fragments/frame/fragment.toml,sha256=U89nzIMsE7uznAhu8D4zu0okrcoiPj4-H23mReqq2us,135
186
+ texsmith/fragments/frame/ts-frame.tex.jinja,sha256=ubIWpOuwzoLsuZyH9aFJE4SpbR0VZzq5eY-gEuiW46Q,2024
187
+ texsmith/fragments/geometry/__init__.py,sha256=mDo4pIRIXiPZsH8z1SQa3R1AlqrxuH9eKTax70blJ9w,6029
188
+ texsmith/fragments/geometry/fragment.toml,sha256=hnsfUXACny3rOwS6BLTuMZ0xeYLxY3TeX2lSsrJOApA,130
189
+ texsmith/fragments/geometry/paper.py,sha256=-w09eYlUMn7tPcjdPTq0Tg_KS6LkbRIWU9_kYeDxJbA,19406
190
+ texsmith/fragments/geometry/ts_geometry.tex.jinja,sha256=w9B8jZssgZr8QKvP8pVShYTCBlsYyGHkpTBVEri3aew,2255
191
+ texsmith/fragments/glossary/__init__.py,sha256=22NWkFo31troaWqx0ti0bzW3PsupiRq5d4lzgLfrTOc,2182
192
+ texsmith/fragments/glossary/fragment.toml,sha256=yKRUtFluVo-Ls9Y3gExASKCGFlfcIV2nAloiVEjjVJc,119
193
+ texsmith/fragments/glossary/ts-glossary-backmatter.jinja.tex,sha256=sufdAjSZqVCAHFgD0YSyRMmS4Mw11r-60FxLgi1dq0M,256
194
+ texsmith/fragments/glossary/ts-glossary.jinja.sty,sha256=lbcGhG12bYgHbYI87Ob5-iqTaTyk9zgkbAHjrfL_Tyw,1224
195
+ texsmith/fragments/index/__init__.py,sha256=CUcR_Nrk0j-8OygczZRbietspRBIrYN5DmsdWVkjehw,2102
196
+ texsmith/fragments/index/fragment.toml,sha256=TErfpc-kQyAJzbQjtdkTisG3dchSSQwaseqMcYeZi7M,124
197
+ texsmith/fragments/index/ts-index-backmatter.jinja.tex,sha256=Glln_-B2AUYPymSw2tTS-M-Tq9A3S1FEr02al30xGDM,68
198
+ texsmith/fragments/index/ts-index.jinja.sty,sha256=B8GYfzMHVA2fKAueBFrmjkXrZ_YfEU41xrbeNDLdmqc,327
199
+ texsmith/fragments/keystrokes/__init__.py,sha256=5pFaRWfk6oQg738WShdlcg8G3wOU4sjzUab81DNUQKM,2216
200
+ texsmith/fragments/keystrokes/fragment.toml,sha256=gMuQZR_atW5ZE6u5qBa_mSWlnZNgAw91ORjB62MkSFA,124
201
+ texsmith/fragments/keystrokes/ts-keystrokes.jinja.sty,sha256=FNOHUfcmaEzYEyn4CIiJrS-MKHdRVVvxlAVzqQXZXrY,492
202
+ texsmith/fragments/todolist/__init__.py,sha256=Ho0_3OYInMcgPoRaDlDtBIkIWfGrvYnh2823ZfoNlJQ,2219
203
+ texsmith/fragments/todolist/fragment.toml,sha256=qfDAvxeISo0YwE9AKVNtFrWrik6IshvPcz3WjpUEtp4,119
204
+ texsmith/fragments/todolist/ts-todolist.jinja.sty,sha256=g587eBLTt6OWqaiSGJxVl5y2k7ow2X4h2iDIsdP_p0k,516
205
+ texsmith/fragments/typesetting/__init__.py,sha256=_5eAtJMPsbQ6tThhblnX9dLNSoc_1JfoMXxo6d2mdmw,6708
206
+ texsmith/fragments/typesetting/fragment.toml,sha256=sq0png2tJM0fwuNCuE1b0YkFtfsJ3iE8Qn6cdaPFyYA,151
207
+ texsmith/fragments/typesetting/ts-typesetting.tex.jinja,sha256=J-DBsusyeBJ_3V6l-3IF3EyMP0BXdQ4lQ9lezy6DXzI,2274
208
+ texsmith/plugins/__init__.py,sha256=C8v9mlP1XSx6snAhA2hCekCSoG8-4MA81wX5n5zv7R4,448
209
+ texsmith/templates/__init__.py,sha256=mG3CNTfOIKsIpUL1qNkDlRaTk_9qEO2mA_em2rIwW-4,62
210
+ texsmith/templates/article/README.md,sha256=bZHLDLv4-_LcBH43HX1p3sU2pi9fhdT88ai870qxpyo,1413
211
+ texsmith/templates/article/__init__.py,sha256=_cCFCL8NVLrzyHZVTKIQTtFS3CAKq7IGF5tbpWYAl80,10358
212
+ texsmith/templates/article/template/manifest.toml,sha256=GhCnnexkKmuFAWpjO1PTpG2-r-sgezcDBtouSUxxO_Q,3247
213
+ texsmith/templates/article/template/mermaid-config.json,sha256=9s6y0kyUHMDx3esD9mZnv_i5HB77V9_O2Ok0aOLcnMA,961
214
+ texsmith/templates/article/template/template.tex,sha256=ilnvQuxMcN3is53887xSWdv4i-7wM3t9VTcwtVR6xBQ,2266
215
+ texsmith/templates/book/README.md,sha256=10ErkGyIf27mTOjX5oJ10TIzX9stbVi8snjQHGVBBms,1125
216
+ texsmith/templates/book/__init__.py,sha256=6GZx6Djprm2VRJcG0xaayP0CqkCJT26XNsO8btosdAE,2416
217
+ texsmith/templates/book/overrides/codeblock.tex,sha256=YreO6bAWKW8IRwvpj1NBAWcyJmm_uctvFb10Y2Acp9U,402
218
+ texsmith/templates/book/overrides/codeinline.tex,sha256=T_P0eW4zT4qIjzHlD6oFk05J0X60AaO9y29-FdZoYrM,116
219
+ texsmith/templates/book/template/fixtoc.sty,sha256=Tsp8NpElOl6VtkUtE3y8VsdSho9niT3iDBS_zc3Xnrc,2598
220
+ texsmith/templates/book/template/manifest.toml,sha256=NhpCMTYqSR-M6g3telbvWnS6pEQin5okGS-4rU_FjPQ,4504
221
+ texsmith/templates/book/template/template.tex,sha256=s0MO-vB6ylW-o2hQisjsaYxam1-2ee69RI1OHnyex-8,7781
222
+ texsmith/templates/common/__init__.py,sha256=eWOE_MTjFKbeumVwkihCu_lULHNvH2U2Rxbah3jpGBs,56
223
+ texsmith/templates/common/latexmkrc,sha256=4iTdy1rJn6Ui634mv0CPhcqOSwi5ULaCHX2hCfbzXZM,1763
224
+ texsmith/templates/letter/README.md,sha256=nkYTg3XsI_GB9SdQ1lM1pQVzxCI5K_qfZA_TOriAbls,3805
225
+ texsmith/templates/letter/__init__.py,sha256=4Y065Jcx92VtDHos-6m0_j9P3BBA-p3L09znbci2Oyo,18048
226
+ texsmith/templates/letter/demo.md,sha256=YMF81xS7ZDiO-0bA5_CNqFnQpWRJugFkhExSchLRIPQ,1792
227
+ texsmith/templates/letter/manifest.toml,sha256=3WnTfBBTOErCUAEiAgNIoxtjwuCmMhEPgVlJn77rYHo,4045
228
+ texsmith/templates/letter/fonts/modernline bold.otf,sha256=23ZNaCHEwS__gQf0Lj4a_X7luYjY2H_TxCvTy1lC-RI,129324
229
+ texsmith/templates/letter/fonts/modernline.otf,sha256=p4nTiH1cSJFbb1dyQYgSdVL6oilbdobkTxLwvdoBjdg,98668
230
+ texsmith/templates/letter/template/callouts.jinja.sty,sha256=sQtVN3PdXZpnfKp2DcaPQcLn-HG_PyEwhzOCRYQc93I,10157
231
+ texsmith/templates/letter/template/template.tex,sha256=euZYQxEFF5fbr4g3biTr7CPJmcimbW6seoobio9fGV8,3536
232
+ texsmith/templates/snippet/README.md,sha256=4G24LmUUXPmvl0nQNHZD66NNT2aVLNJ9TKJzEbpd7Xo,870
233
+ texsmith/templates/snippet/__init__.py,sha256=X81bCX_ZTPinoO_rc9yAdWqbN_fk5iI4eyKeXaGxfrY,3037
234
+ texsmith/templates/snippet/template/manifest.toml,sha256=8zYdcpvm0Z6qqfpW2p7VCE2DZG-nLKMlbXYn_hlNgx8,1146
235
+ texsmith/templates/snippet/template/template.tex,sha256=l-dL1U-blqTShbpO7mZZLFW61NoxdQgMvMKrd6JHV38,1306
236
+ texsmith/ui/__init__.py,sha256=6N1NapcJ9rkBzAejf06T60KuZmCUTsoBZjIA2Nkxdd8,94
237
+ texsmith/ui/cli/__init__.py,sha256=BrLglzHZ0Dr1CS3lVXLaieVsG18LDLG8GKT9_btHxw0,488
238
+ texsmith/ui/cli/_options.py,sha256=MiAQCHfmNe4bRmg5TKBwZfI9E-bOomm-37zs0n4yYNo,8098
239
+ texsmith/ui/cli/app.py,sha256=X22xYLdWWHkypKys8W9JkOGrcMBVOYu0Dx5Yiv4YYvc,1755
240
+ texsmith/ui/cli/bibliography.py,sha256=CgQlHcMCwHU664POkmyq34BMo_PSDLWQrBuZSF5T-uk,10884
241
+ texsmith/ui/cli/diagnostics.py,sha256=W1IRBHB8fore7-IAw8IbrThRcwJfgcZe-e9pIgxP0-s,1264
242
+ texsmith/ui/cli/presenter.py,sha256=SCfAjj03TsImK1OSOvc9iaiR8uCd-ieXbM81G6LeJL4,24799
243
+ texsmith/ui/cli/state.py,sha256=kxjT-LX4ltvIblEb4AVHsLiDQIhNoSXuqcq62tgL4Xs,8800
244
+ texsmith/ui/cli/utils.py,sha256=d68UdW-CalHrWWWAnU0KIw2RTHpM-C9My7YpzVIYVXQ,8308
245
+ texsmith/ui/cli/commands/__init__.py,sha256=7AaLEkoOT6iMplNkeDcsMshhr5LcKymjPgqfcUQ-Wy8,458
246
+ texsmith/ui/cli/commands/render.py,sha256=gcYPughFw3vf_uBG39Y4Ubppz_gGQ8lPQsLw0P4-OOY,39893
247
+ texsmith/ui/cli/commands/templates.py,sha256=0HEQbnb-GViz5qQx5pfUhslRKdX5IUE0Cwk659UD-rA,14961
248
+ texsmith-0.0.2.dev0.dist-info/METADATA,sha256=4pKkDmw9l6eaRl1iAZWfLjyemgu8zvTZcLfcyDUHYDQ,9927
249
+ texsmith-0.0.2.dev0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
250
+ texsmith-0.0.2.dev0.dist-info/entry_points.txt,sha256=UhdPRpStPMyerYmzacfSYwksvVcrwdGe3WU8dk9BxQA,911
251
+ texsmith-0.0.2.dev0.dist-info/licenses/LICENSE.md,sha256=s8wUkDHYPsJyrOSZ5iIXxQZuAgClVg2BjZDNx7wFQDw,1067
252
+ texsmith-0.0.2.dev0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.28.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,22 @@
1
+ [console_scripts]
2
+ check = texsmith.devtools:main
3
+ texsmith = texsmith.ui.cli.app:main
4
+
5
+ [markdown.extensions]
6
+ texsmith.index = texsmith.index:TexsmithIndexExtension
7
+ texsmith.latex_raw = texsmith.latex_raw:LatexRawExtension
8
+ texsmith.latex_text = texsmith.latex_text:LatexTextExtension
9
+ texsmith.mermaid = texsmith.mermaid:MermaidExtension
10
+ texsmith.missing_footnotes = texsmith.missing_footnotes:MissingFootnotesExtension
11
+ texsmith.multi_citations = texsmith.multi_citations:MultiCitationExtension
12
+ texsmith.quotes = texsmith.quotes:TexsmithQuotesExtension
13
+ texsmith.rawlatex = texsmith.rawlatex:RawLatexExtension
14
+ texsmith.smallcaps = texsmith.smallcaps:SmallCapsExtension
15
+ texsmith.texlogos = texsmith.texlogos:TexLogosExtension
16
+
17
+ [mkdocs.plugins]
18
+ texsmith.index = texsmith.index:IndexPlugin
19
+
20
+ [texsmith.renderers]
21
+ texsmith.index = texsmith.index:register_renderer
22
+ texsmith.texlogos = texsmith.texlogos:register_renderer
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Isaac Muse
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.