@eightyfourthousand/lib-editing 2026.4.0 → 2026.4.2

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 (1011) hide show
  1. package/fixtures/basic/json.d.ts +4 -0
  2. package/fixtures/basic/json.js +393 -0
  3. package/fixtures/basic/json.js.map +1 -0
  4. package/fixtures/toh251/json.d.ts +4 -0
  5. package/fixtures/toh251/json.js +4898 -0
  6. package/fixtures/toh251/json.js.map +1 -0
  7. package/fixtures/toh251/passages.d.ts +4 -0
  8. package/fixtures/toh251/passages.js +2764 -0
  9. package/fixtures/toh251/passages.js.map +1 -0
  10. package/fixtures/types.d.ts +6 -0
  11. package/fixtures/types.js +4 -0
  12. package/fixtures/types.js.map +1 -0
  13. package/index.js +5 -0
  14. package/index.js.map +1 -0
  15. package/lib/block.d.ts +3 -0
  16. package/lib/block.js +181 -0
  17. package/lib/block.js.map +1 -0
  18. package/lib/components/editor/BlockEditor.d.ts +7 -0
  19. package/lib/components/editor/BlockEditor.js +18 -0
  20. package/lib/components/editor/BlockEditor.js.map +1 -0
  21. package/lib/components/editor/EditorBackMatterPage.d.ts +1 -0
  22. package/lib/components/editor/EditorBackMatterPage.js +54 -0
  23. package/lib/components/editor/EditorBackMatterPage.js.map +1 -0
  24. package/lib/components/editor/EditorBodyPage.d.ts +1 -0
  25. package/lib/components/editor/EditorBodyPage.js +46 -0
  26. package/lib/components/editor/EditorBodyPage.js.map +1 -0
  27. package/lib/components/editor/EditorHeader.d.ts +1 -0
  28. package/lib/components/editor/EditorHeader.js +12 -0
  29. package/lib/components/editor/EditorHeader.js.map +1 -0
  30. package/lib/components/editor/EditorLayout.d.ts +9 -0
  31. package/lib/components/editor/EditorLayout.js +29 -0
  32. package/lib/components/editor/EditorLayout.js.map +1 -0
  33. package/lib/components/editor/EditorLeftPanelPage.d.ts +1 -0
  34. package/lib/components/editor/EditorLeftPanelPage.js +23 -0
  35. package/lib/components/editor/EditorLeftPanelPage.js.map +1 -0
  36. package/lib/components/editor/EditorProvider.d.ts +31 -0
  37. package/lib/components/editor/EditorProvider.js +350 -0
  38. package/lib/components/editor/EditorProvider.js.map +1 -0
  39. package/lib/components/editor/PaginationProvider.d.ts +27 -0
  40. package/lib/components/editor/PaginationProvider.js +307 -0
  41. package/lib/components/editor/PaginationProvider.js.map +1 -0
  42. package/lib/components/editor/TitlesBuilder.d.ts +5 -0
  43. package/lib/components/editor/TitlesBuilder.js +24 -0
  44. package/lib/components/editor/TitlesBuilder.js.map +1 -0
  45. package/lib/components/editor/TranslationBuilder.d.ts +2 -0
  46. package/lib/components/editor/TranslationBuilder.js +124 -0
  47. package/lib/components/editor/TranslationBuilder.js.map +1 -0
  48. package/lib/components/editor/TranslationEditor.d.ts +6 -0
  49. package/lib/components/editor/TranslationEditor.js +15 -0
  50. package/lib/components/editor/TranslationEditor.js.map +1 -0
  51. package/lib/components/editor/extensions/Abbreviation/Abbreviation.d.ts +16 -0
  52. package/lib/components/editor/extensions/Abbreviation/Abbreviation.js +106 -0
  53. package/lib/components/editor/extensions/Abbreviation/Abbreviation.js.map +1 -0
  54. package/lib/components/editor/extensions/Audio/Audio.d.ts +23 -0
  55. package/lib/components/editor/extensions/Audio/Audio.js +41 -0
  56. package/lib/components/editor/extensions/Audio/Audio.js.map +1 -0
  57. package/lib/components/editor/extensions/Bold.d.ts +1 -0
  58. package/lib/components/editor/extensions/Bold.js +43 -0
  59. package/lib/components/editor/extensions/Bold.js.map +1 -0
  60. package/lib/components/editor/extensions/Document.d.ts +2 -0
  61. package/lib/components/editor/extensions/Document.js +7 -0
  62. package/lib/components/editor/extensions/Document.js.map +1 -0
  63. package/lib/components/editor/extensions/DragHandle/DragHandle.d.ts +25 -0
  64. package/lib/components/editor/extensions/DragHandle/DragHandle.js +304 -0
  65. package/lib/components/editor/extensions/DragHandle/DragHandle.js.map +1 -0
  66. package/lib/components/editor/extensions/EndNoteLink/EndNoteLink.d.ts +6 -0
  67. package/lib/components/editor/extensions/EndNoteLink/EndNoteLink.js +20 -0
  68. package/lib/components/editor/extensions/EndNoteLink/EndNoteLink.js.map +1 -0
  69. package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.d.ts +7 -0
  70. package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.js +76 -0
  71. package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.js.map +1 -0
  72. package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.d.ts +13 -0
  73. package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.js +176 -0
  74. package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.js.map +1 -0
  75. package/lib/components/editor/extensions/EndNoteLink/endnote-utils.d.ts +86 -0
  76. package/lib/components/editor/extensions/EndNoteLink/endnote-utils.js +314 -0
  77. package/lib/components/editor/extensions/EndNoteLink/endnote-utils.js.map +1 -0
  78. package/lib/components/editor/extensions/GlobalConfig.d.ts +23 -0
  79. package/lib/components/editor/extensions/GlobalConfig.js +23 -0
  80. package/lib/components/editor/extensions/GlobalConfig.js.map +1 -0
  81. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.d.ts +4 -0
  82. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.js +22 -0
  83. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.js.map +1 -0
  84. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.d.ts +7 -0
  85. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.js +67 -0
  86. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.js.map +1 -0
  87. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.d.ts +13 -0
  88. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.js +118 -0
  89. package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.js.map +1 -0
  90. package/lib/components/editor/extensions/Heading/Heading.d.ts +2 -0
  91. package/lib/components/editor/extensions/Heading/Heading.js +54 -0
  92. package/lib/components/editor/extensions/Heading/Heading.js.map +1 -0
  93. package/lib/components/editor/extensions/HoverInputField.d.ts +7 -0
  94. package/lib/components/editor/extensions/HoverInputField.js +19 -0
  95. package/lib/components/editor/extensions/HoverInputField.js.map +1 -0
  96. package/lib/components/editor/extensions/Image.d.ts +2 -0
  97. package/lib/components/editor/extensions/Image.js +16 -0
  98. package/lib/components/editor/extensions/Image.js.map +1 -0
  99. package/lib/components/editor/extensions/Indent.d.ts +24 -0
  100. package/lib/components/editor/extensions/Indent.js +66 -0
  101. package/lib/components/editor/extensions/Indent.js.map +1 -0
  102. package/lib/components/editor/extensions/InternalLink/InternalLink.d.ts +13 -0
  103. package/lib/components/editor/extensions/InternalLink/InternalLink.js +145 -0
  104. package/lib/components/editor/extensions/InternalLink/InternalLink.js.map +1 -0
  105. package/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.d.ts +8 -0
  106. package/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.js +71 -0
  107. package/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.js.map +1 -0
  108. package/lib/components/editor/extensions/InternalLink/InternalLinkInput.d.ts +5 -0
  109. package/lib/components/editor/extensions/InternalLink/InternalLinkInput.js +31 -0
  110. package/lib/components/editor/extensions/InternalLink/InternalLinkInput.js.map +1 -0
  111. package/lib/components/editor/extensions/InternalLink/index.js +2 -0
  112. package/lib/components/editor/extensions/InternalLink/index.js.map +1 -0
  113. package/lib/components/editor/extensions/Italic.d.ts +1 -0
  114. package/lib/components/editor/extensions/Italic.js +50 -0
  115. package/lib/components/editor/extensions/Italic.js.map +1 -0
  116. package/lib/components/editor/extensions/LeadingSpace.d.ts +24 -0
  117. package/lib/components/editor/extensions/LeadingSpace.js +69 -0
  118. package/lib/components/editor/extensions/LeadingSpace.js.map +1 -0
  119. package/lib/components/editor/extensions/Line/LineNode.d.ts +2 -0
  120. package/lib/components/editor/extensions/Line/LineNode.js +32 -0
  121. package/lib/components/editor/extensions/Line/LineNode.js.map +1 -0
  122. package/lib/components/editor/extensions/LineGroup/LineGroupNode.d.ts +19 -0
  123. package/lib/components/editor/extensions/LineGroup/LineGroupNode.js +86 -0
  124. package/lib/components/editor/extensions/LineGroup/LineGroupNode.js.map +1 -0
  125. package/lib/components/editor/extensions/Link/Link.d.ts +1 -0
  126. package/lib/components/editor/extensions/Link/Link.js +61 -0
  127. package/lib/components/editor/extensions/Link/Link.js.map +1 -0
  128. package/lib/components/editor/extensions/Link/LinkHoverContent.d.ts +7 -0
  129. package/lib/components/editor/extensions/Link/LinkHoverContent.js +59 -0
  130. package/lib/components/editor/extensions/Link/LinkHoverContent.js.map +1 -0
  131. package/lib/components/editor/extensions/Link/index.js +2 -0
  132. package/lib/components/editor/extensions/Link/index.js.map +1 -0
  133. package/lib/components/editor/extensions/List.d.ts +3 -0
  134. package/lib/components/editor/extensions/List.js +68 -0
  135. package/lib/components/editor/extensions/List.js.map +1 -0
  136. package/lib/components/editor/extensions/Mantra/Mantra.d.ts +15 -0
  137. package/lib/components/editor/extensions/Mantra/Mantra.js +63 -0
  138. package/lib/components/editor/extensions/Mantra/Mantra.js.map +1 -0
  139. package/lib/components/editor/extensions/Mention/Mention.d.ts +22 -0
  140. package/lib/components/editor/extensions/Mention/Mention.js +142 -0
  141. package/lib/components/editor/extensions/Mention/Mention.js.map +1 -0
  142. package/lib/components/editor/extensions/Mention/MentionHoverContent.d.ts +8 -0
  143. package/lib/components/editor/extensions/Mention/MentionHoverContent.js +86 -0
  144. package/lib/components/editor/extensions/Mention/MentionHoverContent.js.map +1 -0
  145. package/lib/components/editor/extensions/NodeWrapper.d.ts +18 -0
  146. package/lib/components/editor/extensions/NodeWrapper.js +14 -0
  147. package/lib/components/editor/extensions/NodeWrapper.js.map +1 -0
  148. package/lib/components/editor/extensions/Paragraph/Paragraph.d.ts +2 -0
  149. package/lib/components/editor/extensions/Paragraph/Paragraph.js +23 -0
  150. package/lib/components/editor/extensions/Paragraph/Paragraph.js.map +1 -0
  151. package/lib/components/editor/extensions/ParagraphIndent.d.ts +24 -0
  152. package/lib/components/editor/extensions/ParagraphIndent.js +52 -0
  153. package/lib/components/editor/extensions/ParagraphIndent.js.map +1 -0
  154. package/lib/components/editor/extensions/Passage/EditLabel.d.ts +4 -0
  155. package/lib/components/editor/extensions/Passage/EditLabel.js +19 -0
  156. package/lib/components/editor/extensions/Passage/EditLabel.js.map +1 -0
  157. package/lib/components/editor/extensions/Passage/EditorOptions.d.ts +3 -0
  158. package/lib/components/editor/extensions/Passage/EditorOptions.js +8 -0
  159. package/lib/components/editor/extensions/Passage/EditorOptions.js.map +1 -0
  160. package/lib/components/editor/extensions/Passage/Passage.d.ts +3 -0
  161. package/lib/components/editor/extensions/Passage/Passage.js +74 -0
  162. package/lib/components/editor/extensions/Passage/Passage.js.map +1 -0
  163. package/lib/components/editor/extensions/Passage/PassageNode.d.ts +10 -0
  164. package/lib/components/editor/extensions/Passage/PassageNode.js +185 -0
  165. package/lib/components/editor/extensions/Passage/PassageNode.js.map +1 -0
  166. package/lib/components/editor/extensions/Passage/ReaderOptions.d.ts +8 -0
  167. package/lib/components/editor/extensions/Passage/ReaderOptions.js +24 -0
  168. package/lib/components/editor/extensions/Passage/ReaderOptions.js.map +1 -0
  169. package/lib/components/editor/extensions/Passage/ShowAnnotations.d.ts +2 -0
  170. package/lib/components/editor/extensions/Passage/ShowAnnotations.js +30 -0
  171. package/lib/components/editor/extensions/Passage/ShowAnnotations.js.map +1 -0
  172. package/lib/components/editor/extensions/Passage/index.js +2 -0
  173. package/lib/components/editor/extensions/Passage/index.js.map +1 -0
  174. package/lib/components/editor/extensions/Passage/label.d.ts +22 -0
  175. package/lib/components/editor/extensions/Passage/label.js +37 -0
  176. package/lib/components/editor/extensions/Passage/label.js.map +1 -0
  177. package/lib/components/editor/extensions/Placeholder.d.ts +2 -0
  178. package/lib/components/editor/extensions/Placeholder.js +9 -0
  179. package/lib/components/editor/extensions/Placeholder.js.map +1 -0
  180. package/lib/components/editor/extensions/SlashCommand/SlashCommand.d.ts +32 -0
  181. package/lib/components/editor/extensions/SlashCommand/SlashCommand.js +35 -0
  182. package/lib/components/editor/extensions/SlashCommand/SlashCommand.js.map +1 -0
  183. package/lib/components/editor/extensions/SlashCommand/SuggestionList.d.ts +12 -0
  184. package/lib/components/editor/extensions/SlashCommand/SuggestionList.js +49 -0
  185. package/lib/components/editor/extensions/SlashCommand/SuggestionList.js.map +1 -0
  186. package/lib/components/editor/extensions/SlashCommand/Suggestions.d.ts +13 -0
  187. package/lib/components/editor/extensions/SlashCommand/Suggestions.js +149 -0
  188. package/lib/components/editor/extensions/SlashCommand/Suggestions.js.map +1 -0
  189. package/lib/components/editor/extensions/SmallCaps.d.ts +34 -0
  190. package/lib/components/editor/extensions/SmallCaps.js +68 -0
  191. package/lib/components/editor/extensions/SmallCaps.js.map +1 -0
  192. package/lib/components/editor/extensions/StarterKit.d.ts +4 -0
  193. package/lib/components/editor/extensions/StarterKit.js +31 -0
  194. package/lib/components/editor/extensions/StarterKit.js.map +1 -0
  195. package/lib/components/editor/extensions/Subscript.d.ts +1 -0
  196. package/lib/components/editor/extensions/Subscript.js +43 -0
  197. package/lib/components/editor/extensions/Subscript.js.map +1 -0
  198. package/lib/components/editor/extensions/Superscript.d.ts +1 -0
  199. package/lib/components/editor/extensions/Superscript.js +43 -0
  200. package/lib/components/editor/extensions/Superscript.js.map +1 -0
  201. package/lib/components/editor/extensions/Table.d.ts +1 -0
  202. package/lib/components/editor/extensions/Table.js +27 -0
  203. package/lib/components/editor/extensions/Table.js.map +1 -0
  204. package/lib/components/editor/extensions/TextAlign.d.ts +2 -0
  205. package/lib/components/editor/extensions/TextAlign.js +5 -0
  206. package/lib/components/editor/extensions/TextAlign.js.map +1 -0
  207. package/lib/components/editor/extensions/TitleMetadata.d.ts +2 -0
  208. package/lib/components/editor/extensions/TitleMetadata.js +40 -0
  209. package/lib/components/editor/extensions/TitleMetadata.js.map +1 -0
  210. package/lib/components/editor/extensions/TitleNode.d.ts +8 -0
  211. package/lib/components/editor/extensions/TitleNode.js +118 -0
  212. package/lib/components/editor/extensions/TitleNode.js.map +1 -0
  213. package/lib/components/editor/extensions/TitlesNode.d.ts +7 -0
  214. package/lib/components/editor/extensions/TitlesNode.js +89 -0
  215. package/lib/components/editor/extensions/TitlesNode.js.map +1 -0
  216. package/lib/components/editor/extensions/Trailer.d.ts +16 -0
  217. package/lib/components/editor/extensions/Trailer.js +35 -0
  218. package/lib/components/editor/extensions/Trailer.js.map +1 -0
  219. package/lib/components/editor/extensions/TranslationDocument.d.ts +3 -0
  220. package/lib/components/editor/extensions/TranslationDocument.js +7 -0
  221. package/lib/components/editor/extensions/TranslationDocument.js.map +1 -0
  222. package/lib/components/editor/extensions/TranslationMetadata.d.ts +3 -0
  223. package/lib/components/editor/extensions/TranslationMetadata.js +56 -0
  224. package/lib/components/editor/extensions/TranslationMetadata.js.map +1 -0
  225. package/lib/components/editor/extensions/Underline.d.ts +1 -0
  226. package/lib/components/editor/extensions/Underline.js +43 -0
  227. package/lib/components/editor/extensions/Underline.js.map +1 -0
  228. package/lib/components/editor/hooks/index.js +5 -0
  229. package/lib/components/editor/hooks/index.js.map +1 -0
  230. package/lib/components/editor/hooks/useBlockEditor.d.ts +13 -0
  231. package/lib/components/editor/hooks/useBlockEditor.js +30 -0
  232. package/lib/components/editor/hooks/useBlockEditor.js.map +1 -0
  233. package/lib/components/editor/hooks/useDefaultExtensions.d.ts +3 -0
  234. package/lib/components/editor/hooks/useDefaultExtensions.js +38 -0
  235. package/lib/components/editor/hooks/useDefaultExtensions.js.map +1 -0
  236. package/lib/components/editor/hooks/useDirtyStore.d.ts +8 -0
  237. package/lib/components/editor/hooks/useDirtyStore.js +23 -0
  238. package/lib/components/editor/hooks/useDirtyStore.js.map +1 -0
  239. package/lib/components/editor/hooks/useTranslationExtensions.d.ts +6 -0
  240. package/lib/components/editor/hooks/useTranslationExtensions.js +120 -0
  241. package/lib/components/editor/hooks/useTranslationExtensions.js.map +1 -0
  242. package/lib/components/editor/index.js +11 -0
  243. package/lib/components/editor/index.js.map +1 -0
  244. package/lib/components/editor/menus/EmptyBubbleMenu.d.ts +4 -0
  245. package/lib/components/editor/menus/EmptyBubbleMenu.js +24 -0
  246. package/lib/components/editor/menus/EmptyBubbleMenu.js.map +1 -0
  247. package/lib/components/editor/menus/MainBubbleMenu.d.ts +4 -0
  248. package/lib/components/editor/menus/MainBubbleMenu.js +28 -0
  249. package/lib/components/editor/menus/MainBubbleMenu.js.map +1 -0
  250. package/lib/components/editor/menus/TranslationBubbleMenu.d.ts +4 -0
  251. package/lib/components/editor/menus/TranslationBubbleMenu.js +30 -0
  252. package/lib/components/editor/menus/TranslationBubbleMenu.js.map +1 -0
  253. package/lib/components/editor/menus/index.js +4 -0
  254. package/lib/components/editor/menus/index.js.map +1 -0
  255. package/lib/components/editor/menus/selectors/EndNoteSelector.d.ts +4 -0
  256. package/lib/components/editor/menus/selectors/EndNoteSelector.js +250 -0
  257. package/lib/components/editor/menus/selectors/EndNoteSelector.js.map +1 -0
  258. package/lib/components/editor/menus/selectors/GlossarySelector.d.ts +4 -0
  259. package/lib/components/editor/menus/selectors/GlossarySelector.js +26 -0
  260. package/lib/components/editor/menus/selectors/GlossarySelector.js.map +1 -0
  261. package/lib/components/editor/menus/selectors/LinkSelector.d.ts +4 -0
  262. package/lib/components/editor/menus/selectors/LinkSelector.js +31 -0
  263. package/lib/components/editor/menus/selectors/LinkSelector.js.map +1 -0
  264. package/lib/components/editor/menus/selectors/MantraSelector.d.ts +4 -0
  265. package/lib/components/editor/menus/selectors/MantraSelector.js +63 -0
  266. package/lib/components/editor/menus/selectors/MantraSelector.js.map +1 -0
  267. package/lib/components/editor/menus/selectors/NodeSelector.d.ts +4 -0
  268. package/lib/components/editor/menus/selectors/NodeSelector.js +74 -0
  269. package/lib/components/editor/menus/selectors/NodeSelector.js.map +1 -0
  270. package/lib/components/editor/menus/selectors/ParagraphButtons.d.ts +4 -0
  271. package/lib/components/editor/menus/selectors/ParagraphButtons.js +42 -0
  272. package/lib/components/editor/menus/selectors/ParagraphButtons.js.map +1 -0
  273. package/lib/components/editor/menus/selectors/SelectorInputField.d.ts +8 -0
  274. package/lib/components/editor/menus/selectors/SelectorInputField.js +28 -0
  275. package/lib/components/editor/menus/selectors/SelectorInputField.js.map +1 -0
  276. package/lib/components/editor/menus/selectors/TextAlignSelector.d.ts +4 -0
  277. package/lib/components/editor/menus/selectors/TextAlignSelector.js +42 -0
  278. package/lib/components/editor/menus/selectors/TextAlignSelector.js.map +1 -0
  279. package/lib/components/editor/menus/selectors/TextButtons.d.ts +4 -0
  280. package/lib/components/editor/menus/selectors/TextButtons.js +56 -0
  281. package/lib/components/editor/menus/selectors/TextButtons.js.map +1 -0
  282. package/lib/components/editor/menus/selectors/TranslationNodeSelector.d.ts +4 -0
  283. package/lib/components/editor/menus/selectors/TranslationNodeSelector.js +74 -0
  284. package/lib/components/editor/menus/selectors/TranslationNodeSelector.js.map +1 -0
  285. package/lib/components/editor/menus/selectors/TranslationTextButtons.d.ts +4 -0
  286. package/lib/components/editor/menus/selectors/TranslationTextButtons.js +75 -0
  287. package/lib/components/editor/menus/selectors/TranslationTextButtons.js.map +1 -0
  288. package/lib/components/editor/menus/selectors/index.js +6 -0
  289. package/lib/components/editor/menus/selectors/index.js.map +1 -0
  290. package/lib/components/editor/save-filter.d.ts +13 -0
  291. package/lib/components/editor/save-filter.js +15 -0
  292. package/lib/components/editor/save-filter.js.map +1 -0
  293. package/lib/components/editor/util.d.ts +98 -0
  294. package/lib/components/editor/util.js +189 -0
  295. package/lib/components/editor/util.js.map +1 -0
  296. package/lib/components/index.js +4 -0
  297. package/lib/components/index.js.map +1 -0
  298. package/lib/components/reader/ReaderBackMatterPage.d.ts +5 -0
  299. package/lib/components/reader/ReaderBackMatterPage.js +37 -0
  300. package/lib/components/reader/ReaderBackMatterPage.js.map +1 -0
  301. package/lib/components/reader/ReaderBackMatterPanel.d.ts +11 -0
  302. package/lib/components/reader/ReaderBackMatterPanel.js +15 -0
  303. package/lib/components/reader/ReaderBackMatterPanel.js.map +1 -0
  304. package/lib/components/reader/ReaderBodyPage.d.ts +5 -0
  305. package/lib/components/reader/ReaderBodyPage.js +28 -0
  306. package/lib/components/reader/ReaderBodyPage.js.map +1 -0
  307. package/lib/components/reader/ReaderBodyPanel.d.ts +8 -0
  308. package/lib/components/reader/ReaderBodyPanel.js +19 -0
  309. package/lib/components/reader/ReaderBodyPanel.js.map +1 -0
  310. package/lib/components/reader/ReaderLayout.d.ts +10 -0
  311. package/lib/components/reader/ReaderLayout.js +11 -0
  312. package/lib/components/reader/ReaderLayout.js.map +1 -0
  313. package/lib/components/reader/ReaderLeftPanel.d.ts +5 -0
  314. package/lib/components/reader/ReaderLeftPanel.js +7 -0
  315. package/lib/components/reader/ReaderLeftPanel.js.map +1 -0
  316. package/lib/components/reader/ReaderLeftPanelPage.d.ts +5 -0
  317. package/lib/components/reader/ReaderLeftPanelPage.js +19 -0
  318. package/lib/components/reader/ReaderLeftPanelPage.js.map +1 -0
  319. package/lib/components/reader/TranslationReader.d.ts +2 -0
  320. package/lib/components/reader/TranslationReader.js +10 -0
  321. package/lib/components/reader/TranslationReader.js.map +1 -0
  322. package/lib/components/reader/index.js +3 -0
  323. package/lib/components/reader/index.js.map +1 -0
  324. package/lib/components/reader/ssr.js +4 -0
  325. package/lib/components/reader/ssr.js.map +1 -0
  326. package/lib/components/shared/AiSummarizerPage.d.ts +1 -0
  327. package/lib/components/shared/AiSummarizerPage.js +11 -0
  328. package/lib/components/shared/AiSummarizerPage.js.map +1 -0
  329. package/lib/components/shared/BackMatterPanel.d.ts +15 -0
  330. package/lib/components/shared/BackMatterPanel.js +31 -0
  331. package/lib/components/shared/BackMatterPanel.js.map +1 -0
  332. package/lib/components/shared/BodyPanel.d.ts +12 -0
  333. package/lib/components/shared/BodyPanel.js +81 -0
  334. package/lib/components/shared/BodyPanel.js.map +1 -0
  335. package/lib/components/shared/HoverCardProvider.d.ts +23 -0
  336. package/lib/components/shared/HoverCardProvider.js +261 -0
  337. package/lib/components/shared/HoverCardProvider.js.map +1 -0
  338. package/lib/components/shared/Imprint.d.ts +4 -0
  339. package/lib/components/shared/Imprint.js +11 -0
  340. package/lib/components/shared/Imprint.js.map +1 -0
  341. package/lib/components/shared/LabeledElement.d.ts +9 -0
  342. package/lib/components/shared/LabeledElement.js +41 -0
  343. package/lib/components/shared/LabeledElement.js.map +1 -0
  344. package/lib/components/shared/LeftPanel.d.ts +6 -0
  345. package/lib/components/shared/LeftPanel.js +22 -0
  346. package/lib/components/shared/LeftPanel.js.map +1 -0
  347. package/lib/components/shared/NavigationContext.d.ts +25 -0
  348. package/lib/components/shared/NavigationContext.js +30 -0
  349. package/lib/components/shared/NavigationContext.js.map +1 -0
  350. package/lib/components/shared/NavigationProvider.d.ts +7 -0
  351. package/lib/components/shared/NavigationProvider.js +266 -0
  352. package/lib/components/shared/NavigationProvider.js.map +1 -0
  353. package/lib/components/shared/OpenGraphImage.d.ts +13 -0
  354. package/lib/components/shared/OpenGraphImage.js +46 -0
  355. package/lib/components/shared/OpenGraphImage.js.map +1 -0
  356. package/lib/components/shared/PassageSkeleton.d.ts +1 -0
  357. package/lib/components/shared/PassageSkeleton.js +6 -0
  358. package/lib/components/shared/PassageSkeleton.js.map +1 -0
  359. package/lib/components/shared/ReaderSearchButton.d.ts +1 -0
  360. package/lib/components/shared/ReaderSearchButton.js +71 -0
  361. package/lib/components/shared/ReaderSearchButton.js.map +1 -0
  362. package/lib/components/shared/RestrictionWarning.d.ts +13 -0
  363. package/lib/components/shared/RestrictionWarning.js +61 -0
  364. package/lib/components/shared/RestrictionWarning.js.map +1 -0
  365. package/lib/components/shared/SearchReplacePanel.d.ts +9 -0
  366. package/lib/components/shared/SearchReplacePanel.js +134 -0
  367. package/lib/components/shared/SearchReplacePanel.js.map +1 -0
  368. package/lib/components/shared/SourceReader.d.ts +1 -0
  369. package/lib/components/shared/SourceReader.js +48 -0
  370. package/lib/components/shared/SourceReader.js.map +1 -0
  371. package/lib/components/shared/SuggestRevisionForm.d.ts +6 -0
  372. package/lib/components/shared/SuggestRevisionForm.js +43 -0
  373. package/lib/components/shared/SuggestRevisionForm.js.map +1 -0
  374. package/lib/components/shared/TableOfContents.d.ts +13 -0
  375. package/lib/components/shared/TableOfContents.js +131 -0
  376. package/lib/components/shared/TableOfContents.js.map +1 -0
  377. package/lib/components/shared/ThreeColumnRenderer.d.ts +5 -0
  378. package/lib/components/shared/ThreeColumnRenderer.js +28 -0
  379. package/lib/components/shared/ThreeColumnRenderer.js.map +1 -0
  380. package/lib/components/shared/TranslationHeader.d.ts +3 -0
  381. package/lib/components/shared/TranslationHeader.js +10 -0
  382. package/lib/components/shared/TranslationHeader.js.map +1 -0
  383. package/lib/components/shared/TranslationHoverCard.d.ts +7 -0
  384. package/lib/components/shared/TranslationHoverCard.js +41 -0
  385. package/lib/components/shared/TranslationHoverCard.js.map +1 -0
  386. package/lib/components/shared/TranslationSkeleton.d.ts +3 -0
  387. package/lib/components/shared/TranslationSkeleton.js +7 -0
  388. package/lib/components/shared/TranslationSkeleton.js.map +1 -0
  389. package/lib/components/shared/TranslationTable.d.ts +4 -0
  390. package/lib/components/shared/TranslationTable.js +83 -0
  391. package/lib/components/shared/TranslationTable.js.map +1 -0
  392. package/lib/components/shared/bibliography/BibliographyBody.d.ts +5 -0
  393. package/lib/components/shared/bibliography/BibliographyBody.js +11 -0
  394. package/lib/components/shared/bibliography/BibliographyBody.js.map +1 -0
  395. package/lib/components/shared/bibliography/BibliographyList.d.ts +5 -0
  396. package/lib/components/shared/bibliography/BibliographyList.js +15 -0
  397. package/lib/components/shared/bibliography/BibliographyList.js.map +1 -0
  398. package/lib/components/shared/bibliography/index.js +2 -0
  399. package/lib/components/shared/bibliography/index.js.map +1 -0
  400. package/lib/components/shared/generate-metadata.d.ts +6 -0
  401. package/lib/components/shared/generate-metadata.js +29 -0
  402. package/lib/components/shared/generate-metadata.js.map +1 -0
  403. package/lib/components/shared/glossary/GlossaryInstanceBody.d.ts +6 -0
  404. package/lib/components/shared/glossary/GlossaryInstanceBody.js +48 -0
  405. package/lib/components/shared/glossary/GlossaryInstanceBody.js.map +1 -0
  406. package/lib/components/shared/glossary/GlossaryPaginationProvider.d.ts +19 -0
  407. package/lib/components/shared/glossary/GlossaryPaginationProvider.js +179 -0
  408. package/lib/components/shared/glossary/GlossaryPaginationProvider.js.map +1 -0
  409. package/lib/components/shared/glossary/GlossarySkeleton.d.ts +5 -0
  410. package/lib/components/shared/glossary/GlossarySkeleton.js +10 -0
  411. package/lib/components/shared/glossary/GlossarySkeleton.js.map +1 -0
  412. package/lib/components/shared/glossary/GlossaryTermList.d.ts +4 -0
  413. package/lib/components/shared/glossary/GlossaryTermList.js +17 -0
  414. package/lib/components/shared/glossary/GlossaryTermList.js.map +1 -0
  415. package/lib/components/shared/glossary/index.js +4 -0
  416. package/lib/components/shared/glossary/index.js.map +1 -0
  417. package/lib/components/shared/hooks/useGlossaryInstanceListener.d.ts +4 -0
  418. package/lib/components/shared/hooks/useGlossaryInstanceListener.js +30 -0
  419. package/lib/components/shared/hooks/useGlossaryInstanceListener.js.map +1 -0
  420. package/lib/components/shared/hooks/usePaginationLoadTriggers.d.ts +12 -0
  421. package/lib/components/shared/hooks/usePaginationLoadTriggers.js +94 -0
  422. package/lib/components/shared/hooks/usePaginationLoadTriggers.js.map +1 -0
  423. package/lib/components/shared/hooks/useScrollInTab.d.ts +7 -0
  424. package/lib/components/shared/hooks/useScrollInTab.js +30 -0
  425. package/lib/components/shared/hooks/useScrollInTab.js.map +1 -0
  426. package/lib/components/shared/hooks/useScrollPositionRestore.d.ts +44 -0
  427. package/lib/components/shared/hooks/useScrollPositionRestore.js +217 -0
  428. package/lib/components/shared/hooks/useScrollPositionRestore.js.map +1 -0
  429. package/lib/components/shared/hooks/useTohToggle.d.ts +5 -0
  430. package/lib/components/shared/hooks/useTohToggle.js +35 -0
  431. package/lib/components/shared/hooks/useTohToggle.js.map +1 -0
  432. package/lib/components/shared/index.js +12 -0
  433. package/lib/components/shared/index.js.map +1 -0
  434. package/lib/components/shared/ssr.js +3 -0
  435. package/lib/components/shared/ssr.js.map +1 -0
  436. package/lib/components/shared/titles/FramedCard.d.ts +7 -0
  437. package/lib/components/shared/titles/FramedCard.js +21 -0
  438. package/lib/components/shared/titles/FramedCard.js.map +1 -0
  439. package/lib/components/shared/titles/LongTitle.d.ts +5 -0
  440. package/lib/components/shared/titles/LongTitle.js +12 -0
  441. package/lib/components/shared/titles/LongTitle.js.map +1 -0
  442. package/lib/components/shared/titles/LongTitles.d.ts +4 -0
  443. package/lib/components/shared/titles/LongTitles.js +14 -0
  444. package/lib/components/shared/titles/LongTitles.js.map +1 -0
  445. package/lib/components/shared/titles/Title.d.ts +20 -0
  446. package/lib/components/shared/titles/Title.js +37 -0
  447. package/lib/components/shared/titles/Title.js.map +1 -0
  448. package/lib/components/shared/titles/TitleDetails.d.ts +4 -0
  449. package/lib/components/shared/titles/TitleDetails.js +16 -0
  450. package/lib/components/shared/titles/TitleDetails.js.map +1 -0
  451. package/lib/components/shared/titles/TitleForm.d.ts +5 -0
  452. package/lib/components/shared/titles/TitleForm.js +15 -0
  453. package/lib/components/shared/titles/TitleForm.js.map +1 -0
  454. package/lib/components/shared/titles/Titles.d.ts +8 -0
  455. package/lib/components/shared/titles/Titles.js +64 -0
  456. package/lib/components/shared/titles/Titles.js.map +1 -0
  457. package/lib/components/shared/titles/TitlesCard.d.ts +12 -0
  458. package/lib/components/shared/titles/TitlesCard.js +10 -0
  459. package/lib/components/shared/titles/TitlesCard.js.map +1 -0
  460. package/lib/components/shared/titles/index.js +9 -0
  461. package/lib/components/shared/titles/index.js.map +1 -0
  462. package/lib/components/shared/types.d.ts +30 -0
  463. package/lib/components/shared/types.js +34 -0
  464. package/lib/components/shared/types.js.map +1 -0
  465. package/lib/components/ssr.js +3 -0
  466. package/lib/components/ssr.js.map +1 -0
  467. package/lib/exporters/abbreviation.d.ts +3 -0
  468. package/lib/exporters/abbreviation.js +14 -0
  469. package/lib/exporters/abbreviation.js.map +1 -0
  470. package/lib/exporters/annotation.d.ts +5 -0
  471. package/lib/exporters/annotation.js +161 -0
  472. package/lib/exporters/annotation.js.map +1 -0
  473. package/lib/exporters/audio.d.ts +3 -0
  474. package/lib/exporters/audio.js +19 -0
  475. package/lib/exporters/audio.js.map +1 -0
  476. package/lib/exporters/blockquote.d.ts +3 -0
  477. package/lib/exporters/blockquote.js +16 -0
  478. package/lib/exporters/blockquote.js.map +1 -0
  479. package/lib/exporters/code.d.ts +3 -0
  480. package/lib/exporters/code.js +16 -0
  481. package/lib/exporters/code.js.map +1 -0
  482. package/lib/exporters/end-note-link.d.ts +3 -0
  483. package/lib/exporters/end-note-link.js +23 -0
  484. package/lib/exporters/end-note-link.js.map +1 -0
  485. package/lib/exporters/export.d.ts +10 -0
  486. package/lib/exporters/export.js +2 -0
  487. package/lib/exporters/export.js.map +1 -0
  488. package/lib/exporters/glossary-instance.d.ts +3 -0
  489. package/lib/exporters/glossary-instance.js +20 -0
  490. package/lib/exporters/glossary-instance.js.map +1 -0
  491. package/lib/exporters/has-abbreviation.d.ts +3 -0
  492. package/lib/exporters/has-abbreviation.js +14 -0
  493. package/lib/exporters/has-abbreviation.js.map +1 -0
  494. package/lib/exporters/heading.d.ts +3 -0
  495. package/lib/exporters/heading.js +20 -0
  496. package/lib/exporters/heading.js.map +1 -0
  497. package/lib/exporters/image.d.ts +3 -0
  498. package/lib/exporters/image.js +17 -0
  499. package/lib/exporters/image.js.map +1 -0
  500. package/lib/exporters/indent.d.ts +3 -0
  501. package/lib/exporters/indent.js +11 -0
  502. package/lib/exporters/indent.js.map +1 -0
  503. package/lib/exporters/index.js +2 -0
  504. package/lib/exporters/index.js.map +1 -0
  505. package/lib/exporters/internal-link.d.ts +3 -0
  506. package/lib/exporters/internal-link.js +24 -0
  507. package/lib/exporters/internal-link.js.map +1 -0
  508. package/lib/exporters/italic.d.ts +3 -0
  509. package/lib/exporters/italic.js +33 -0
  510. package/lib/exporters/italic.js.map +1 -0
  511. package/lib/exporters/leading-space.d.ts +3 -0
  512. package/lib/exporters/leading-space.js +10 -0
  513. package/lib/exporters/leading-space.js.map +1 -0
  514. package/lib/exporters/line-group.d.ts +3 -0
  515. package/lib/exporters/line-group.js +16 -0
  516. package/lib/exporters/line-group.js.map +1 -0
  517. package/lib/exporters/line.d.ts +3 -0
  518. package/lib/exporters/line.js +16 -0
  519. package/lib/exporters/line.js.map +1 -0
  520. package/lib/exporters/link.d.ts +4 -0
  521. package/lib/exporters/link.js +43 -0
  522. package/lib/exporters/link.js.map +1 -0
  523. package/lib/exporters/list-item.d.ts +3 -0
  524. package/lib/exporters/list-item.js +16 -0
  525. package/lib/exporters/list-item.js.map +1 -0
  526. package/lib/exporters/list.d.ts +3 -0
  527. package/lib/exporters/list.js +22 -0
  528. package/lib/exporters/list.js.map +1 -0
  529. package/lib/exporters/mantra.d.ts +3 -0
  530. package/lib/exporters/mantra.js +17 -0
  531. package/lib/exporters/mantra.js.map +1 -0
  532. package/lib/exporters/mention.d.ts +3 -0
  533. package/lib/exporters/mention.js +23 -0
  534. package/lib/exporters/mention.js.map +1 -0
  535. package/lib/exporters/paragraph.d.ts +3 -0
  536. package/lib/exporters/paragraph.js +22 -0
  537. package/lib/exporters/paragraph.js.map +1 -0
  538. package/lib/exporters/quote.d.ts +3 -0
  539. package/lib/exporters/quote.js +16 -0
  540. package/lib/exporters/quote.js.map +1 -0
  541. package/lib/exporters/span.d.ts +3 -0
  542. package/lib/exporters/span.js +29 -0
  543. package/lib/exporters/span.js.map +1 -0
  544. package/lib/exporters/table-body-data.d.ts +3 -0
  545. package/lib/exporters/table-body-data.js +16 -0
  546. package/lib/exporters/table-body-data.js.map +1 -0
  547. package/lib/exporters/table-body-header.d.ts +3 -0
  548. package/lib/exporters/table-body-header.js +16 -0
  549. package/lib/exporters/table-body-header.js.map +1 -0
  550. package/lib/exporters/table-body-row.d.ts +3 -0
  551. package/lib/exporters/table-body-row.js +16 -0
  552. package/lib/exporters/table-body-row.js.map +1 -0
  553. package/lib/exporters/table.d.ts +3 -0
  554. package/lib/exporters/table.js +16 -0
  555. package/lib/exporters/table.js.map +1 -0
  556. package/lib/exporters/trailer.d.ts +3 -0
  557. package/lib/exporters/trailer.js +16 -0
  558. package/lib/exporters/trailer.js.map +1 -0
  559. package/lib/exporters/util.d.ts +3 -0
  560. package/lib/exporters/util.js +48 -0
  561. package/lib/exporters/util.js.map +1 -0
  562. package/lib/passage.d.ts +10 -0
  563. package/lib/passage.js +153 -0
  564. package/lib/passage.js.map +1 -0
  565. package/lib/titles.d.ts +3 -0
  566. package/lib/titles.js +68 -0
  567. package/lib/titles.js.map +1 -0
  568. package/lib/transformers/abbreviation.d.ts +2 -0
  569. package/lib/transformers/abbreviation.js +27 -0
  570. package/lib/transformers/abbreviation.js.map +1 -0
  571. package/lib/transformers/annotate.d.ts +8 -0
  572. package/lib/transformers/annotate.js +98 -0
  573. package/lib/transformers/annotate.js.map +1 -0
  574. package/lib/transformers/audio.d.ts +2 -0
  575. package/lib/transformers/audio.js +27 -0
  576. package/lib/transformers/audio.js.map +1 -0
  577. package/lib/transformers/blockquote.d.ts +2 -0
  578. package/lib/transformers/blockquote.js +39 -0
  579. package/lib/transformers/blockquote.js.map +1 -0
  580. package/lib/transformers/code.d.ts +2 -0
  581. package/lib/transformers/code.js +20 -0
  582. package/lib/transformers/code.js.map +1 -0
  583. package/lib/transformers/deprecated.d.ts +2 -0
  584. package/lib/transformers/deprecated.js +4 -0
  585. package/lib/transformers/deprecated.js.map +1 -0
  586. package/lib/transformers/end-note-link.d.ts +2 -0
  587. package/lib/transformers/end-note-link.js +67 -0
  588. package/lib/transformers/end-note-link.js.map +1 -0
  589. package/lib/transformers/glossary-instance.d.ts +2 -0
  590. package/lib/transformers/glossary-instance.js +35 -0
  591. package/lib/transformers/glossary-instance.js.map +1 -0
  592. package/lib/transformers/has-abbreviation.d.ts +2 -0
  593. package/lib/transformers/has-abbreviation.js +32 -0
  594. package/lib/transformers/has-abbreviation.js.map +1 -0
  595. package/lib/transformers/heading.d.ts +2 -0
  596. package/lib/transformers/heading.js +26 -0
  597. package/lib/transformers/heading.js.map +1 -0
  598. package/lib/transformers/image.d.ts +2 -0
  599. package/lib/transformers/image.js +26 -0
  600. package/lib/transformers/image.js.map +1 -0
  601. package/lib/transformers/indent.d.ts +2 -0
  602. package/lib/transformers/indent.js +16 -0
  603. package/lib/transformers/indent.js.map +1 -0
  604. package/lib/transformers/index.js +34 -0
  605. package/lib/transformers/index.js.map +1 -0
  606. package/lib/transformers/inline-title.d.ts +2 -0
  607. package/lib/transformers/inline-title.js +28 -0
  608. package/lib/transformers/inline-title.js.map +1 -0
  609. package/lib/transformers/internal-link.d.ts +2 -0
  610. package/lib/transformers/internal-link.js +44 -0
  611. package/lib/transformers/internal-link.js.map +1 -0
  612. package/lib/transformers/italic.d.ts +2 -0
  613. package/lib/transformers/italic.js +20 -0
  614. package/lib/transformers/italic.js.map +1 -0
  615. package/lib/transformers/leading-space.d.ts +2 -0
  616. package/lib/transformers/leading-space.js +16 -0
  617. package/lib/transformers/leading-space.js.map +1 -0
  618. package/lib/transformers/line-group.d.ts +2 -0
  619. package/lib/transformers/line-group.js +34 -0
  620. package/lib/transformers/line-group.js.map +1 -0
  621. package/lib/transformers/line.d.ts +2 -0
  622. package/lib/transformers/line.js +25 -0
  623. package/lib/transformers/line.js.map +1 -0
  624. package/lib/transformers/link.d.ts +2 -0
  625. package/lib/transformers/link.js +23 -0
  626. package/lib/transformers/link.js.map +1 -0
  627. package/lib/transformers/list-item.d.ts +2 -0
  628. package/lib/transformers/list-item.js +34 -0
  629. package/lib/transformers/list-item.js.map +1 -0
  630. package/lib/transformers/list.d.ts +2 -0
  631. package/lib/transformers/list.js +37 -0
  632. package/lib/transformers/list.js.map +1 -0
  633. package/lib/transformers/mantra.d.ts +2 -0
  634. package/lib/transformers/mantra.js +23 -0
  635. package/lib/transformers/mantra.js.map +1 -0
  636. package/lib/transformers/mention.d.ts +2 -0
  637. package/lib/transformers/mention.js +48 -0
  638. package/lib/transformers/mention.js.map +1 -0
  639. package/lib/transformers/paragraph.d.ts +2 -0
  640. package/lib/transformers/paragraph.js +23 -0
  641. package/lib/transformers/paragraph.js.map +1 -0
  642. package/lib/transformers/quote.d.ts +1 -0
  643. package/lib/transformers/quote.js +3 -0
  644. package/lib/transformers/quote.js.map +1 -0
  645. package/lib/transformers/quoted.d.ts +1 -0
  646. package/lib/transformers/quoted.js +3 -0
  647. package/lib/transformers/quoted.js.map +1 -0
  648. package/lib/transformers/recurse.d.ts +13 -0
  649. package/lib/transformers/recurse.js +57 -0
  650. package/lib/transformers/recurse.js.map +1 -0
  651. package/lib/transformers/reference.d.ts +1 -0
  652. package/lib/transformers/reference.js +3 -0
  653. package/lib/transformers/reference.js.map +1 -0
  654. package/lib/transformers/span.d.ts +2 -0
  655. package/lib/transformers/span.js +67 -0
  656. package/lib/transformers/span.js.map +1 -0
  657. package/lib/transformers/split-at.d.ts +5 -0
  658. package/lib/transformers/split-at.js +40 -0
  659. package/lib/transformers/split-at.js.map +1 -0
  660. package/lib/transformers/split-block.d.ts +2 -0
  661. package/lib/transformers/split-block.js +80 -0
  662. package/lib/transformers/split-block.js.map +1 -0
  663. package/lib/transformers/split-content.d.ts +2 -0
  664. package/lib/transformers/split-content.js +48 -0
  665. package/lib/transformers/split-content.js.map +1 -0
  666. package/lib/transformers/split-insert.d.ts +5 -0
  667. package/lib/transformers/split-insert.js +56 -0
  668. package/lib/transformers/split-insert.js.map +1 -0
  669. package/lib/transformers/split-marks.d.ts +19 -0
  670. package/lib/transformers/split-marks.js +21 -0
  671. package/lib/transformers/split-marks.js.map +1 -0
  672. package/lib/transformers/split-node.d.ts +14 -0
  673. package/lib/transformers/split-node.js +104 -0
  674. package/lib/transformers/split-node.js.map +1 -0
  675. package/lib/transformers/table-body-data.d.ts +2 -0
  676. package/lib/transformers/table-body-data.js +27 -0
  677. package/lib/transformers/table-body-data.js.map +1 -0
  678. package/lib/transformers/table-body-header.d.ts +2 -0
  679. package/lib/transformers/table-body-header.js +27 -0
  680. package/lib/transformers/table-body-header.js.map +1 -0
  681. package/lib/transformers/table-body-row.d.ts +2 -0
  682. package/lib/transformers/table-body-row.js +27 -0
  683. package/lib/transformers/table-body-row.js.map +1 -0
  684. package/lib/transformers/table.d.ts +2 -0
  685. package/lib/transformers/table.js +27 -0
  686. package/lib/transformers/table.js.map +1 -0
  687. package/lib/transformers/trailer.d.ts +2 -0
  688. package/lib/transformers/trailer.js +23 -0
  689. package/lib/transformers/trailer.js.map +1 -0
  690. package/lib/transformers/transformer.d.ts +15 -0
  691. package/lib/transformers/transformer.js +4 -0
  692. package/lib/transformers/transformer.js.map +1 -0
  693. package/lib/transformers/unknown.d.ts +2 -0
  694. package/lib/transformers/unknown.js +5 -0
  695. package/lib/transformers/unknown.js.map +1 -0
  696. package/lib/transformers/util.d.ts +3 -0
  697. package/lib/transformers/util.js +17 -0
  698. package/lib/transformers/util.js.map +1 -0
  699. package/lib/types.d.ts +2 -0
  700. package/lib/types.js +9 -0
  701. package/lib/types.js.map +1 -0
  702. package/package.json +54 -8
  703. package/ssr.js +2 -0
  704. package/ssr.js.map +1 -0
  705. package/.babelrc +0 -12
  706. package/.eslintrc.json +0 -18
  707. package/README.md +0 -9
  708. package/jest.config.ts +0 -10
  709. package/postcss.config.mjs +0 -9
  710. package/project.json +0 -29
  711. package/src/fixtures/basic/json.ts +0 -396
  712. package/src/fixtures/toh251/json.ts +0 -4913
  713. package/src/fixtures/toh251/passages.ts +0 -2814
  714. package/src/fixtures/types.ts +0 -8
  715. package/src/lib/block.ts +0 -226
  716. package/src/lib/components/editor/BlockEditor.tsx +0 -38
  717. package/src/lib/components/editor/EditorBackMatterPage.tsx +0 -97
  718. package/src/lib/components/editor/EditorBodyPage.tsx +0 -87
  719. package/src/lib/components/editor/EditorHeader.tsx +0 -22
  720. package/src/lib/components/editor/EditorLayout.tsx +0 -62
  721. package/src/lib/components/editor/EditorLeftPanelPage.tsx +0 -27
  722. package/src/lib/components/editor/EditorProvider.tsx +0 -475
  723. package/src/lib/components/editor/PaginationProvider.tsx +0 -457
  724. package/src/lib/components/editor/TitlesBuilder.tsx +0 -40
  725. package/src/lib/components/editor/TranslationBuilder.tsx +0 -171
  726. package/src/lib/components/editor/TranslationEditor.tsx +0 -32
  727. package/src/lib/components/editor/extensions/Abbreviation/Abbreviation.ts +0 -133
  728. package/src/lib/components/editor/extensions/Audio/Audio.ts +0 -69
  729. package/src/lib/components/editor/extensions/Bold.ts +0 -43
  730. package/src/lib/components/editor/extensions/Document.ts +0 -8
  731. package/src/lib/components/editor/extensions/DragHandle/DragHandle.ts +0 -429
  732. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLink.tsx +0 -39
  733. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.tsx +0 -139
  734. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.ts +0 -236
  735. package/src/lib/components/editor/extensions/EndNoteLink/endnote-utils.ts +0 -412
  736. package/src/lib/components/editor/extensions/GlobalConfig.ts +0 -52
  737. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.tsx +0 -54
  738. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.tsx +0 -129
  739. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.ts +0 -148
  740. package/src/lib/components/editor/extensions/Heading/Heading.ts +0 -72
  741. package/src/lib/components/editor/extensions/HoverInputField.tsx +0 -54
  742. package/src/lib/components/editor/extensions/Image.ts +0 -18
  743. package/src/lib/components/editor/extensions/Indent.ts +0 -103
  744. package/src/lib/components/editor/extensions/InternalLink/InternalLink.ts +0 -176
  745. package/src/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.tsx +0 -137
  746. package/src/lib/components/editor/extensions/InternalLink/InternalLinkInput.tsx +0 -71
  747. package/src/lib/components/editor/extensions/Italic.ts +0 -50
  748. package/src/lib/components/editor/extensions/LeadingSpace.ts +0 -106
  749. package/src/lib/components/editor/extensions/Line/LineNode.ts +0 -41
  750. package/src/lib/components/editor/extensions/LineGroup/LineGroupNode.ts +0 -124
  751. package/src/lib/components/editor/extensions/Link/Link.ts +0 -65
  752. package/src/lib/components/editor/extensions/Link/LinkHoverContent.tsx +0 -124
  753. package/src/lib/components/editor/extensions/List.ts +0 -74
  754. package/src/lib/components/editor/extensions/Mantra/Mantra.ts +0 -88
  755. package/src/lib/components/editor/extensions/Mention/Mention.ts +0 -187
  756. package/src/lib/components/editor/extensions/Mention/MentionHoverContent.tsx +0 -158
  757. package/src/lib/components/editor/extensions/NodeWrapper.tsx +0 -57
  758. package/src/lib/components/editor/extensions/Paragraph/Paragraph.ts +0 -25
  759. package/src/lib/components/editor/extensions/ParagraphIndent.ts +0 -87
  760. package/src/lib/components/editor/extensions/Passage/EditLabel.tsx +0 -57
  761. package/src/lib/components/editor/extensions/Passage/EditorOptions.tsx +0 -29
  762. package/src/lib/components/editor/extensions/Passage/Passage.tsx +0 -238
  763. package/src/lib/components/editor/extensions/Passage/PassageNode.ts +0 -223
  764. package/src/lib/components/editor/extensions/Passage/ReaderOptions.tsx +0 -55
  765. package/src/lib/components/editor/extensions/Passage/ShowAnnotations.tsx +0 -92
  766. package/src/lib/components/editor/extensions/Passage/label.spec.ts +0 -118
  767. package/src/lib/components/editor/extensions/Passage/label.ts +0 -39
  768. package/src/lib/components/editor/extensions/Placeholder.ts +0 -9
  769. package/src/lib/components/editor/extensions/SlashCommand/SlashCommand.ts +0 -65
  770. package/src/lib/components/editor/extensions/SlashCommand/SuggestionList.tsx +0 -109
  771. package/src/lib/components/editor/extensions/SlashCommand/Suggestions.ts +0 -185
  772. package/src/lib/components/editor/extensions/SmallCaps.ts +0 -110
  773. package/src/lib/components/editor/extensions/StarterKit.ts +0 -36
  774. package/src/lib/components/editor/extensions/Subscript.ts +0 -43
  775. package/src/lib/components/editor/extensions/Superscript.ts +0 -43
  776. package/src/lib/components/editor/extensions/Table.ts +0 -32
  777. package/src/lib/components/editor/extensions/TextAlign.ts +0 -5
  778. package/src/lib/components/editor/extensions/TitleMetadata.ts +0 -40
  779. package/src/lib/components/editor/extensions/TitleNode.ts +0 -133
  780. package/src/lib/components/editor/extensions/TitlesNode.ts +0 -102
  781. package/src/lib/components/editor/extensions/Trailer.ts +0 -57
  782. package/src/lib/components/editor/extensions/TranslationDocument.ts +0 -7
  783. package/src/lib/components/editor/extensions/TranslationMetadata.ts +0 -58
  784. package/src/lib/components/editor/extensions/Underline.ts +0 -43
  785. package/src/lib/components/editor/hooks/useBlockEditor.ts +0 -53
  786. package/src/lib/components/editor/hooks/useDefaultExtensions.ts +0 -39
  787. package/src/lib/components/editor/hooks/useDirtyStore.ts +0 -33
  788. package/src/lib/components/editor/hooks/useTranslationExtensions.ts +0 -148
  789. package/src/lib/components/editor/menus/EmptyBubbleMenu.tsx +0 -42
  790. package/src/lib/components/editor/menus/MainBubbleMenu.tsx +0 -51
  791. package/src/lib/components/editor/menus/TranslationBubbleMenu.tsx +0 -57
  792. package/src/lib/components/editor/menus/selectors/EndNoteSelector.tsx +0 -388
  793. package/src/lib/components/editor/menus/selectors/GlossarySelector.tsx +0 -63
  794. package/src/lib/components/editor/menus/selectors/LinkSelector.tsx +0 -68
  795. package/src/lib/components/editor/menus/selectors/MantraSelector.tsx +0 -119
  796. package/src/lib/components/editor/menus/selectors/NodeSelector.tsx +0 -144
  797. package/src/lib/components/editor/menus/selectors/ParagraphButtons.tsx +0 -68
  798. package/src/lib/components/editor/menus/selectors/SelectorInputField.tsx +0 -68
  799. package/src/lib/components/editor/menus/selectors/TextAlignSelector.tsx +0 -89
  800. package/src/lib/components/editor/menus/selectors/TextButtons.tsx +0 -89
  801. package/src/lib/components/editor/menus/selectors/TranslationNodeSelector.tsx +0 -143
  802. package/src/lib/components/editor/menus/selectors/TranslationTextButtons.tsx +0 -125
  803. package/src/lib/components/editor/save-filter.spec.ts +0 -94
  804. package/src/lib/components/editor/save-filter.ts +0 -27
  805. package/src/lib/components/editor/util.ts +0 -304
  806. package/src/lib/components/reader/ReaderBackMatterPage.tsx +0 -63
  807. package/src/lib/components/reader/ReaderBackMatterPanel.tsx +0 -56
  808. package/src/lib/components/reader/ReaderBodyPage.tsx +0 -46
  809. package/src/lib/components/reader/ReaderBodyPanel.tsx +0 -68
  810. package/src/lib/components/reader/ReaderLayout.tsx +0 -39
  811. package/src/lib/components/reader/ReaderLeftPanel.tsx +0 -8
  812. package/src/lib/components/reader/ReaderLeftPanelPage.tsx +0 -31
  813. package/src/lib/components/reader/TranslationReader.tsx +0 -28
  814. package/src/lib/components/shared/AiSummarizerPage.tsx +0 -12
  815. package/src/lib/components/shared/BackMatterPanel.tsx +0 -150
  816. package/src/lib/components/shared/BodyPanel.tsx +0 -214
  817. package/src/lib/components/shared/HoverCardProvider.tsx +0 -407
  818. package/src/lib/components/shared/Imprint.tsx +0 -24
  819. package/src/lib/components/shared/LabeledElement.tsx +0 -133
  820. package/src/lib/components/shared/LeftPanel.tsx +0 -65
  821. package/src/lib/components/shared/NavigationContext.ts +0 -64
  822. package/src/lib/components/shared/NavigationProvider.tsx +0 -400
  823. package/src/lib/components/shared/OpenGraphImage.tsx +0 -75
  824. package/src/lib/components/shared/PassageSkeleton.tsx +0 -10
  825. package/src/lib/components/shared/ReaderSearchButton.tsx +0 -110
  826. package/src/lib/components/shared/RestrictionWarning.tsx +0 -177
  827. package/src/lib/components/shared/SearchReplacePanel.tsx +0 -259
  828. package/src/lib/components/shared/SourceReader.tsx +0 -92
  829. package/src/lib/components/shared/SuggestRevisionForm.tsx +0 -99
  830. package/src/lib/components/shared/TableOfContents.tsx +0 -293
  831. package/src/lib/components/shared/ThreeColumnRenderer.tsx +0 -61
  832. package/src/lib/components/shared/TranslationHeader.tsx +0 -25
  833. package/src/lib/components/shared/TranslationHoverCard.tsx +0 -84
  834. package/src/lib/components/shared/TranslationSkeleton.tsx +0 -16
  835. package/src/lib/components/shared/TranslationTable.tsx +0 -155
  836. package/src/lib/components/shared/bibliography/BibliographyBody.tsx +0 -28
  837. package/src/lib/components/shared/bibliography/BibliographyList.tsx +0 -63
  838. package/src/lib/components/shared/generate-metadata.ts +0 -44
  839. package/src/lib/components/shared/glossary/GlossaryInstanceBody.tsx +0 -154
  840. package/src/lib/components/shared/glossary/GlossaryPaginationProvider.tsx +0 -278
  841. package/src/lib/components/shared/glossary/GlossarySkeleton.tsx +0 -19
  842. package/src/lib/components/shared/glossary/GlossaryTermList.tsx +0 -57
  843. package/src/lib/components/shared/hooks/useGlossaryInstanceListener.tsx +0 -42
  844. package/src/lib/components/shared/hooks/usePaginationLoadTriggers.spec.tsx +0 -158
  845. package/src/lib/components/shared/hooks/usePaginationLoadTriggers.ts +0 -129
  846. package/src/lib/components/shared/hooks/useScrollInTab.tsx +0 -43
  847. package/src/lib/components/shared/hooks/useScrollPositionRestore.ts +0 -274
  848. package/src/lib/components/shared/hooks/useTohToggle.tsx +0 -52
  849. package/src/lib/components/shared/titles/FramedCard.tsx +0 -132
  850. package/src/lib/components/shared/titles/LongTitle.tsx +0 -20
  851. package/src/lib/components/shared/titles/LongTitles.tsx +0 -28
  852. package/src/lib/components/shared/titles/Title.tsx +0 -54
  853. package/src/lib/components/shared/titles/TitleDetails.tsx +0 -47
  854. package/src/lib/components/shared/titles/TitleForm.tsx +0 -37
  855. package/src/lib/components/shared/titles/Titles.tsx +0 -125
  856. package/src/lib/components/shared/titles/TitlesCard.tsx +0 -113
  857. package/src/lib/components/shared/types.ts +0 -79
  858. package/src/lib/exporters/abbreviation.spec.ts +0 -31
  859. package/src/lib/exporters/abbreviation.ts +0 -22
  860. package/src/lib/exporters/annotation.ts +0 -193
  861. package/src/lib/exporters/audio.spec.ts +0 -77
  862. package/src/lib/exporters/audio.ts +0 -27
  863. package/src/lib/exporters/blockquote.spec.ts +0 -48
  864. package/src/lib/exporters/blockquote.ts +0 -24
  865. package/src/lib/exporters/code.spec.ts +0 -93
  866. package/src/lib/exporters/code.ts +0 -26
  867. package/src/lib/exporters/end-note-link.spec.ts +0 -104
  868. package/src/lib/exporters/end-note-link.ts +0 -35
  869. package/src/lib/exporters/export.ts +0 -12
  870. package/src/lib/exporters/glossary-instance.spec.ts +0 -85
  871. package/src/lib/exporters/glossary-instance.ts +0 -31
  872. package/src/lib/exporters/has-abbreviation.spec.ts +0 -31
  873. package/src/lib/exporters/has-abbreviation.ts +0 -21
  874. package/src/lib/exporters/heading.spec.ts +0 -80
  875. package/src/lib/exporters/heading.ts +0 -28
  876. package/src/lib/exporters/image.spec.ts +0 -48
  877. package/src/lib/exporters/image.ts +0 -25
  878. package/src/lib/exporters/indent.spec.ts +0 -58
  879. package/src/lib/exporters/indent.ts +0 -18
  880. package/src/lib/exporters/internal-link.spec.ts +0 -90
  881. package/src/lib/exporters/internal-link.ts +0 -35
  882. package/src/lib/exporters/italic.spec.ts +0 -84
  883. package/src/lib/exporters/italic.ts +0 -55
  884. package/src/lib/exporters/leading-space.spec.ts +0 -28
  885. package/src/lib/exporters/leading-space.ts +0 -16
  886. package/src/lib/exporters/line-group.spec.ts +0 -48
  887. package/src/lib/exporters/line-group.ts +0 -24
  888. package/src/lib/exporters/line.spec.ts +0 -48
  889. package/src/lib/exporters/line.ts +0 -24
  890. package/src/lib/exporters/link.spec.ts +0 -123
  891. package/src/lib/exporters/link.ts +0 -67
  892. package/src/lib/exporters/list-item.spec.ts +0 -48
  893. package/src/lib/exporters/list-item.ts +0 -24
  894. package/src/lib/exporters/list.spec.ts +0 -82
  895. package/src/lib/exporters/list.ts +0 -31
  896. package/src/lib/exporters/mantra.spec.ts +0 -51
  897. package/src/lib/exporters/mantra.ts +0 -25
  898. package/src/lib/exporters/mention.ts +0 -41
  899. package/src/lib/exporters/paragraph.spec.ts +0 -173
  900. package/src/lib/exporters/paragraph.ts +0 -32
  901. package/src/lib/exporters/quote.spec.ts +0 -56
  902. package/src/lib/exporters/quote.ts +0 -25
  903. package/src/lib/exporters/span.spec.ts +0 -118
  904. package/src/lib/exporters/span.ts +0 -44
  905. package/src/lib/exporters/table-body-data.spec.ts +0 -48
  906. package/src/lib/exporters/table-body-data.ts +0 -24
  907. package/src/lib/exporters/table-body-header.spec.ts +0 -48
  908. package/src/lib/exporters/table-body-header.ts +0 -24
  909. package/src/lib/exporters/table-body-row.spec.ts +0 -48
  910. package/src/lib/exporters/table-body-row.ts +0 -24
  911. package/src/lib/exporters/table.spec.ts +0 -48
  912. package/src/lib/exporters/table.ts +0 -24
  913. package/src/lib/exporters/trailer.spec.ts +0 -48
  914. package/src/lib/exporters/trailer.ts +0 -24
  915. package/src/lib/exporters/util.ts +0 -62
  916. package/src/lib/passage.ts +0 -182
  917. package/src/lib/titles.ts +0 -80
  918. package/src/lib/transformers/abbreviation.spec.ts +0 -87
  919. package/src/lib/transformers/abbreviation.ts +0 -30
  920. package/src/lib/transformers/annotate.ts +0 -146
  921. package/src/lib/transformers/audio.spec.ts +0 -55
  922. package/src/lib/transformers/audio.ts +0 -29
  923. package/src/lib/transformers/blockquote.spec.ts +0 -48
  924. package/src/lib/transformers/blockquote.ts +0 -41
  925. package/src/lib/transformers/code.spec.ts +0 -52
  926. package/src/lib/transformers/code.ts +0 -22
  927. package/src/lib/transformers/deprecated.ts +0 -7
  928. package/src/lib/transformers/end-note-link.spec.ts +0 -56
  929. package/src/lib/transformers/end-note-link.ts +0 -76
  930. package/src/lib/transformers/glossary-instance.spec.ts +0 -55
  931. package/src/lib/transformers/glossary-instance.ts +0 -40
  932. package/src/lib/transformers/has-abbreviation.spec.ts +0 -50
  933. package/src/lib/transformers/has-abbreviation.ts +0 -35
  934. package/src/lib/transformers/heading.spec.ts +0 -62
  935. package/src/lib/transformers/heading.ts +0 -30
  936. package/src/lib/transformers/image.spec.ts +0 -51
  937. package/src/lib/transformers/image.ts +0 -28
  938. package/src/lib/transformers/indent.spec.ts +0 -53
  939. package/src/lib/transformers/indent.ts +0 -17
  940. package/src/lib/transformers/inline-title.spec.ts +0 -59
  941. package/src/lib/transformers/inline-title.ts +0 -34
  942. package/src/lib/transformers/internal-link.spec.ts +0 -67
  943. package/src/lib/transformers/internal-link.ts +0 -65
  944. package/src/lib/transformers/italic.ts +0 -22
  945. package/src/lib/transformers/leading-space.spec.ts +0 -55
  946. package/src/lib/transformers/leading-space.ts +0 -17
  947. package/src/lib/transformers/line-group.spec.ts +0 -48
  948. package/src/lib/transformers/line-group.ts +0 -37
  949. package/src/lib/transformers/line.spec.ts +0 -54
  950. package/src/lib/transformers/line.ts +0 -27
  951. package/src/lib/transformers/link.spec.ts +0 -61
  952. package/src/lib/transformers/link.ts +0 -27
  953. package/src/lib/transformers/list-item.spec.ts +0 -48
  954. package/src/lib/transformers/list-item.ts +0 -37
  955. package/src/lib/transformers/list.spec.ts +0 -58
  956. package/src/lib/transformers/list.ts +0 -42
  957. package/src/lib/transformers/mantra.spec.ts +0 -58
  958. package/src/lib/transformers/mantra.ts +0 -28
  959. package/src/lib/transformers/mention.ts +0 -70
  960. package/src/lib/transformers/paragraph.spec.ts +0 -46
  961. package/src/lib/transformers/paragraph.ts +0 -26
  962. package/src/lib/transformers/quote.spec.ts +0 -42
  963. package/src/lib/transformers/quote.ts +0 -3
  964. package/src/lib/transformers/quoted.ts +0 -3
  965. package/src/lib/transformers/recurse.ts +0 -76
  966. package/src/lib/transformers/reference.ts +0 -3
  967. package/src/lib/transformers/span.spec.ts +0 -68
  968. package/src/lib/transformers/span.ts +0 -78
  969. package/src/lib/transformers/split-at.ts +0 -58
  970. package/src/lib/transformers/split-block.ts +0 -110
  971. package/src/lib/transformers/split-content.ts +0 -67
  972. package/src/lib/transformers/split-insert.ts +0 -76
  973. package/src/lib/transformers/split-marks.ts +0 -42
  974. package/src/lib/transformers/split-node.ts +0 -138
  975. package/src/lib/transformers/table-body-data.spec.ts +0 -44
  976. package/src/lib/transformers/table-body-data.ts +0 -29
  977. package/src/lib/transformers/table-body-header.spec.ts +0 -44
  978. package/src/lib/transformers/table-body-header.ts +0 -29
  979. package/src/lib/transformers/table-body-row.spec.ts +0 -44
  980. package/src/lib/transformers/table-body-row.ts +0 -29
  981. package/src/lib/transformers/table.spec.ts +0 -47
  982. package/src/lib/transformers/table.ts +0 -29
  983. package/src/lib/transformers/trailer.spec.ts +0 -43
  984. package/src/lib/transformers/trailer.ts +0 -26
  985. package/src/lib/transformers/transformer.ts +0 -25
  986. package/src/lib/transformers/unknown.ts +0 -8
  987. package/src/lib/transformers/util.ts +0 -20
  988. package/src/lib/types.ts +0 -10
  989. package/tsconfig.json +0 -20
  990. package/tsconfig.lib.json +0 -29
  991. package/tsconfig.spec.json +0 -22
  992. /package/{src/index.ts → index.d.ts} +0 -0
  993. /package/{src/lib/components/editor/extensions/InternalLink/index.ts → lib/components/editor/extensions/InternalLink/index.d.ts} +0 -0
  994. /package/{src/lib/components/editor/extensions/Link/index.ts → lib/components/editor/extensions/Link/index.d.ts} +0 -0
  995. /package/{src/lib/components/editor/extensions/Passage/index.ts → lib/components/editor/extensions/Passage/index.d.ts} +0 -0
  996. /package/{src/lib/components/editor/hooks/index.ts → lib/components/editor/hooks/index.d.ts} +0 -0
  997. /package/{src/lib/components/editor/index.ts → lib/components/editor/index.d.ts} +0 -0
  998. /package/{src/lib/components/editor/menus/index.ts → lib/components/editor/menus/index.d.ts} +0 -0
  999. /package/{src/lib/components/editor/menus/selectors/index.ts → lib/components/editor/menus/selectors/index.d.ts} +0 -0
  1000. /package/{src/lib/components/index.ts → lib/components/index.d.ts} +0 -0
  1001. /package/{src/lib/components/reader/index.ts → lib/components/reader/index.d.ts} +0 -0
  1002. /package/{src/lib/components/reader/ssr.ts → lib/components/reader/ssr.d.ts} +0 -0
  1003. /package/{src/lib/components/shared/bibliography/index.ts → lib/components/shared/bibliography/index.d.ts} +0 -0
  1004. /package/{src/lib/components/shared/glossary/index.ts → lib/components/shared/glossary/index.d.ts} +0 -0
  1005. /package/{src/lib/components/shared/index.ts → lib/components/shared/index.d.ts} +0 -0
  1006. /package/{src/lib/components/shared/ssr.ts → lib/components/shared/ssr.d.ts} +0 -0
  1007. /package/{src/lib/components/shared/titles/index.ts → lib/components/shared/titles/index.d.ts} +0 -0
  1008. /package/{src/lib/components/ssr.ts → lib/components/ssr.d.ts} +0 -0
  1009. /package/{src/lib/exporters/index.ts → lib/exporters/index.d.ts} +0 -0
  1010. /package/{src/lib/transformers/index.ts → lib/transformers/index.d.ts} +0 -0
  1011. /package/{src/ssr.ts → ssr.d.ts} +0 -0
@@ -1,2814 +0,0 @@
1
- import { PassageDTO } from '@eightyfourthousand/data-access';
2
- import { EditorType } from '../types';
3
-
4
- export const type: EditorType = 'translation';
5
-
6
- export const content: PassageDTO[] = [
7
- {
8
- sort: 2,
9
- type: 'summaryHeader',
10
- uuid: '1bf5e88d-b25d-435d-8b8d-ccaa305efef4',
11
- label: 's.',
12
- xmlId: 'UT22084-066-009-summary',
13
- parent: 'UT22084-066-009-summary',
14
- content: 'Summary',
15
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
16
- annotations: [
17
- {
18
- end: 7,
19
- type: 'heading',
20
- uuid: 'ca3f2d68-7689-4d37-afe2-373d437fbb36',
21
- start: 0,
22
- content: [
23
- {
24
- 'heading-level': 'h2',
25
- },
26
- {
27
- 'heading-type': 'section-title',
28
- },
29
- ],
30
- passage_uuid: '1bf5e88d-b25d-435d-8b8d-ccaa305efef4',
31
- },
32
- ],
33
- },
34
- {
35
- sort: 4,
36
- type: 'summary',
37
- uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
38
- label: 's.1',
39
- xmlId: 'UT22084-066-009-1',
40
- parent: 'UT22084-066-009-summary',
41
- content:
42
- 'While residing in the Jeta’s Grove in Śrāvastī, the Buddha explains to an assembly of monks and bodhisattvas four factors of the path that bodhisattvas must not abandon even at the cost of their lives: (1) the thought of awakening, (2) the spiritual friend, (3) tolerance and lenience (which are here counted as one), and (4) dwelling in the wilderness. The sūtra concludes with two verses in which the Buddha restates the four factors and asserts that those who do not relinquish them will attain complete awakening.',
43
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
44
- annotations: [
45
- {
46
- end: 34,
47
- type: 'glossary-instance',
48
- uuid: 'c84f3056-99ca-403b-baa7-d365ab7e41c2',
49
- start: 22,
50
- content: [
51
- {
52
- type: 'glossary',
53
- uuid: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
54
- glossary_xmlId: 'UT22084-066-009-284',
55
- },
56
- ],
57
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
58
- },
59
- {
60
- end: 46,
61
- type: 'glossary-instance',
62
- uuid: '5ba67072-54e0-4b5c-a446-6aaa11eb6053',
63
- start: 38,
64
- content: [
65
- {
66
- type: 'glossary',
67
- uuid: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
68
- glossary_xmlId: 'UT22084-066-009-72',
69
- },
70
- ],
71
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
72
- },
73
- {
74
- end: 230,
75
- type: 'glossary-instance',
76
- uuid: 'b9c0010a-3b22-40c6-b85b-bc6437ab1740',
77
- start: 210,
78
- content: [
79
- {
80
- type: 'glossary',
81
- uuid: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
82
- glossary_xmlId: 'UT22084-066-009-64',
83
- },
84
- ],
85
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
86
- },
87
- {
88
- end: 256,
89
- type: 'glossary-instance',
90
- uuid: 'e05d0163-3b41-46df-8eba-f6e0a34e5b83',
91
- start: 240,
92
- content: [
93
- {
94
- type: 'glossary',
95
- uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
96
- glossary_xmlId: 'UT22084-066-009-68',
97
- },
98
- ],
99
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
100
- },
101
- {
102
- end: 271,
103
- type: 'glossary-instance',
104
- uuid: 'e2c29dee-968f-49c2-9a35-d4f8fa6ac26f',
105
- start: 262,
106
- content: [
107
- {
108
- type: 'glossary',
109
- uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
110
- glossary_xmlId: 'UT22084-066-009-66',
111
- },
112
- ],
113
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
114
- },
115
- {
116
- end: 284,
117
- type: 'glossary-instance',
118
- uuid: '9e8f4286-3a2f-4ec6-954d-49894ace7797',
119
- start: 276,
120
- content: [
121
- {
122
- type: 'glossary',
123
- uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
124
- glossary_xmlId: 'UT22084-066-009-65',
125
- },
126
- ],
127
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
128
- },
129
- {
130
- end: 352,
131
- type: 'glossary-instance',
132
- uuid: 'daa8f2de-672e-47b9-944d-aa6df327cc85',
133
- start: 326,
134
- content: [
135
- {
136
- type: 'glossary',
137
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
138
- glossary_xmlId: 'UT22084-066-009-67',
139
- },
140
- ],
141
- passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
142
- },
143
- ],
144
- },
145
- {
146
- sort: 20,
147
- type: 'acknowledgmentHeader',
148
- uuid: '598d0186-3b3e-456f-8d1f-8b64042c7f7c',
149
- label: 'ac.',
150
- xmlId: 'UT22084-066-009-acknowledgment',
151
- parent: 'UT22084-066-009-acknowledgment',
152
- content: 'Acknowledgements',
153
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
154
- annotations: [
155
- {
156
- end: 16,
157
- type: 'heading',
158
- uuid: '1e1ada36-bdb8-4ab4-aaad-fbb71e7a3dd5',
159
- start: 0,
160
- content: [
161
- {
162
- 'heading-level': 'h2',
163
- },
164
- {
165
- 'heading-type': 'section-title',
166
- },
167
- ],
168
- passage_uuid: '598d0186-3b3e-456f-8d1f-8b64042c7f7c',
169
- },
170
- ],
171
- },
172
- {
173
- sort: 22,
174
- type: 'acknowledgment',
175
- uuid: '34760e3e-0cb0-4bfa-b523-cf305f94b393',
176
- label: 'ac.1',
177
- xmlId: 'UT22084-066-009-2',
178
- parent: 'UT22084-066-009-acknowledgment',
179
- content:
180
- 'The translation was completed by Adam Pearcey under the patronage and supervision of 84000: Translating the Words of the Buddha and edited by the 84000 editorial team.',
181
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
182
- },
183
- {
184
- sort: 24,
185
- type: 'introductionHeader',
186
- uuid: 'e74a4608-44d2-41ae-8017-a2b2ea02574a',
187
- label: 'i.',
188
- xmlId: 'UT22084-066-009-introduction',
189
- parent: 'UT22084-066-009-introduction',
190
- content: 'Introduction',
191
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
192
- annotations: [
193
- {
194
- end: 12,
195
- type: 'heading',
196
- uuid: '3a1e9427-0485-4753-80ca-8929daf94585',
197
- start: 0,
198
- content: [
199
- {
200
- 'heading-level': 'h2',
201
- },
202
- {
203
- 'heading-type': 'section-title',
204
- },
205
- ],
206
- passage_uuid: 'e74a4608-44d2-41ae-8017-a2b2ea02574a',
207
- },
208
- ],
209
- },
210
- {
211
- sort: 26,
212
- type: 'introduction',
213
- uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
214
- label: 'i.1',
215
- xmlId: 'UT22084-066-009-5',
216
- parent: 'UT22084-066-009-introduction-1',
217
- content:
218
- 'The Noble Mahāyāna Sūtra on the Four Factors (Ārya­catur­dharmaka­nāma­mahā­yāna sūtra) is the third of three short sūtras with similar titles (all referring to sets of four dharmas or factors of the path). In many Kangyurs (predominantly those of Tshalpa origin, including the Degé Kangyur) these sūtras are found grouped together.',
219
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
220
- annotations: [
221
- {
222
- end: 45,
223
- type: 'inline-title',
224
- uuid: 'a4c61f15-5acb-4007-bd64-7b668d94b2a6',
225
- start: 0,
226
- content: [
227
- {
228
- lang: 'en',
229
- },
230
- ],
231
- passage_uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
232
- },
233
- {
234
- end: 87,
235
- type: 'inline-title',
236
- uuid: '900771e9-2305-49c1-9514-2eeda2318021',
237
- start: 46,
238
- content: [
239
- {
240
- lang: 'Sa-Ltn',
241
- },
242
- ],
243
- passage_uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
244
- },
245
- {
246
- end: 181,
247
- type: 'span',
248
- uuid: '53647c8d-c64b-4533-b381-6ff17fb994cb',
249
- start: 174,
250
- content: [
251
- {
252
- 'text-style': 'foreign',
253
- },
254
- {
255
- lang: 'Sa-Ltn',
256
- },
257
- ],
258
- passage_uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
259
- },
260
- ],
261
- },
262
- {
263
- sort: 33,
264
- type: 'introduction',
265
- uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
266
- label: 'i.2',
267
- xmlId: 'UT22084-066-009-206',
268
- parent: 'UT22084-066-009-introduction-1',
269
- content:
270
- 'Of the other sūtras in this set, The Sūtra Teaching the Four Factors (Toh 249) is concerned with the four factors necessary for the practice of confession, while The Four Factors (Toh 250) identifies four beliefs that a wise son of a good family should not accept as true. Two further works, The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa (Toh 248) and The Fourfold Accomplishment (Toh 252) also concern themselves with “sets of four” (catuṣka, bzhi pa), thereby forming a larger group of five sūtras in the Degé Kangyur that lay out key elements of the practice of the path in discrete sets of four factors.',
271
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
272
- annotations: [
273
- {
274
- end: 69,
275
- type: 'inline-title',
276
- uuid: '6e26360d-627d-4a9e-91e6-a81e2b38432a',
277
- start: 33,
278
- content: [
279
- {
280
- lang: 'en',
281
- },
282
- ],
283
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
284
- },
285
- {
286
- end: 78,
287
- type: 'end-note-link',
288
- uuid: '1b1d26bc-4f47-44c3-a6e0-f2ff94f38116',
289
- start: 78,
290
- content: [
291
- {
292
- uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
293
- endnote_xmlId: 'UT22084-066-009-59',
294
- },
295
- {
296
- label: '1',
297
- },
298
- ],
299
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
300
- },
301
- {
302
- end: 179,
303
- type: 'inline-title',
304
- uuid: '159a9e7f-d8fb-46ae-8a2c-7ea20a831291',
305
- start: 162,
306
- content: [
307
- {
308
- lang: 'en',
309
- },
310
- ],
311
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
312
- },
313
- {
314
- end: 188,
315
- type: 'end-note-link',
316
- uuid: '30d3420e-b3f8-4b41-97e7-94242c6ad9a2',
317
- start: 188,
318
- content: [
319
- {
320
- uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
321
- endnote_xmlId: 'UT22084-066-009-207',
322
- },
323
- {
324
- label: '2',
325
- },
326
- ],
327
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
328
- },
329
- {
330
- end: 371,
331
- type: 'inline-title',
332
- uuid: '4681e4c3-f07f-49c2-b061-9fec15722cb2',
333
- start: 292,
334
- content: [
335
- {
336
- lang: 'en',
337
- },
338
- ],
339
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
340
- },
341
- {
342
- end: 380,
343
- type: 'end-note-link',
344
- uuid: 'badbdb97-b3e8-4dca-b31c-0a28c8432e6f',
345
- start: 380,
346
- content: [
347
- {
348
- uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
349
- endnote_xmlId: 'UT22084-066-009-281',
350
- },
351
- {
352
- label: '3',
353
- },
354
- ],
355
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
356
- },
357
- {
358
- end: 413,
359
- type: 'inline-title',
360
- uuid: 'e085cc9f-637c-4c8c-bcb1-f62d6d47c3f3',
361
- start: 385,
362
- content: [
363
- {
364
- lang: 'en',
365
- },
366
- ],
367
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
368
- },
369
- {
370
- end: 422,
371
- type: 'end-note-link',
372
- uuid: '54c51c32-4597-4174-9e23-184521c456e3',
373
- start: 422,
374
- content: [
375
- {
376
- uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
377
- endnote_xmlId: 'UT22084-066-009-62',
378
- },
379
- {
380
- label: '4',
381
- },
382
- ],
383
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
384
- },
385
- {
386
- end: 475,
387
- type: 'span',
388
- uuid: '66346061-42b1-46ae-844d-a04f5bb9378b',
389
- start: 468,
390
- content: [
391
- {
392
- 'text-style': 'foreign',
393
- },
394
- {
395
- lang: 'Sa-Ltn',
396
- },
397
- ],
398
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
399
- },
400
- {
401
- end: 484,
402
- type: 'span',
403
- uuid: '108a6129-2c82-4b66-8b61-8f1fd21b4986',
404
- start: 477,
405
- content: [
406
- {
407
- 'text-style': 'foreign',
408
- },
409
- {
410
- lang: 'Bo-Ltn',
411
- },
412
- ],
413
- passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
414
- },
415
- ],
416
- },
417
- {
418
- sort: 55,
419
- type: 'introduction',
420
- uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
421
- label: 'i.3',
422
- xmlId: 'UT22084-066-009-6',
423
- parent: 'UT22084-066-009-introduction-1',
424
- content:
425
- 'In the present sūtra, dharma is a flexible term used to refer to a specific set or category of four important components or factors of the path that a bodhisattva, someone who aspires to achieve the perfect awakening of a buddha, should not abandon under any circumstances. These four factors are (1) the thought of awakening, (2) the spiritual friend or companion and guide in virtue, (3) tolerance and lenience, considered here as a pair, and (4) dwelling in the wilderness, that is, in a place suitably removed from the social world of the town so as to enable spiritual practice.',
426
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
427
- annotations: [
428
- {
429
- end: 28,
430
- type: 'span',
431
- uuid: '61689b2b-a597-49d5-a49a-49e5f4761f1d',
432
- start: 22,
433
- content: [
434
- {
435
- 'text-style': 'foreign',
436
- },
437
- {
438
- lang: 'Sa-Ltn',
439
- },
440
- ],
441
- passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
442
- },
443
- {
444
- end: 325,
445
- type: 'glossary-instance',
446
- uuid: 'd7ff4c34-60d9-4a4e-8cc0-541c097de9c2',
447
- start: 305,
448
- content: [
449
- {
450
- type: 'glossary',
451
- uuid: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
452
- glossary_xmlId: 'UT22084-066-009-64',
453
- },
454
- ],
455
- passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
456
- },
457
- {
458
- end: 351,
459
- type: 'glossary-instance',
460
- uuid: 'af62f1c4-20e8-44f5-9aa0-59dd50a1e70b',
461
- start: 335,
462
- content: [
463
- {
464
- type: 'glossary',
465
- uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
466
- glossary_xmlId: 'UT22084-066-009-68',
467
- },
468
- ],
469
- passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
470
- },
471
- {
472
- end: 399,
473
- type: 'glossary-instance',
474
- uuid: '29dd0b50-37c1-48a4-a7f0-053a52df4726',
475
- start: 390,
476
- content: [
477
- {
478
- type: 'glossary',
479
- uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
480
- glossary_xmlId: 'UT22084-066-009-66',
481
- },
482
- ],
483
- passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
484
- },
485
- {
486
- end: 412,
487
- type: 'glossary-instance',
488
- uuid: '13e16fac-6f0f-4ce3-b631-b2c32f8a8bdc',
489
- start: 404,
490
- content: [
491
- {
492
- type: 'glossary',
493
- uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
494
- glossary_xmlId: 'UT22084-066-009-65',
495
- },
496
- ],
497
- passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
498
- },
499
- {
500
- end: 475,
501
- type: 'glossary-instance',
502
- uuid: '42200049-3ffb-4646-9418-1e1876172785',
503
- start: 449,
504
- content: [
505
- {
506
- type: 'glossary',
507
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
508
- glossary_xmlId: 'UT22084-066-009-67',
509
- },
510
- ],
511
- passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
512
- },
513
- ],
514
- },
515
- {
516
- sort: 69,
517
- type: 'introduction',
518
- uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
519
- label: 'i.4',
520
- xmlId: 'UT22084-066-009-7',
521
- parent: 'UT22084-066-009-introduction-1',
522
- content:
523
- 'The Buddha presents these four factors using this formula: “For as long as they live, bodhisattvas, great beings, should not abandon x even at the cost of their lives.” This is repeated in six successive lines, first to introduce all four factors together, then for each one in turn, and finally to refer to all four by way of recapitulation. The sūtra thus employs the rhetorical device of repetition‍—combining anaphora and epistrophe, repetition of the beginning and end phrases of a line‍—that is such a common feature of Buddhist canonical literature.',
524
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
525
- annotations: [
526
- {
527
- end: 112,
528
- type: 'glossary-instance',
529
- uuid: '17e2072d-1653-4bba-8ad5-ce8d2956a595',
530
- start: 100,
531
- content: [
532
- {
533
- type: 'glossary',
534
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
535
- glossary_xmlId: 'UT22084-066-009-69',
536
- },
537
- ],
538
- passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
539
- },
540
- {
541
- end: 134,
542
- type: 'span',
543
- uuid: '3228beba-a86c-41ea-92dd-522af762dd66',
544
- start: 133,
545
- content: [
546
- {
547
- 'text-style': 'distinct',
548
- },
549
- ],
550
- passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
551
- },
552
- {
553
- end: 421,
554
- type: 'span',
555
- uuid: 'b515e108-2937-4c9b-a7c0-fd5c86983872',
556
- start: 413,
557
- content: [
558
- {
559
- 'text-style': 'foreign',
560
- },
561
- {
562
- lang: 'Sa-Ltn',
563
- },
564
- ],
565
- passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
566
- },
567
- {
568
- end: 436,
569
- type: 'span',
570
- uuid: '77334161-c18c-4136-8fc7-fd6758769620',
571
- start: 426,
572
- content: [
573
- {
574
- 'text-style': 'foreign',
575
- },
576
- {
577
- lang: 'Sa-Ltn',
578
- },
579
- ],
580
- passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
581
- },
582
- ],
583
- },
584
- {
585
- sort: 79,
586
- type: 'introduction',
587
- uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
588
- label: 'i.5',
589
- xmlId: 'UT22084-066-009-8',
590
- parent: 'UT22084-066-009-introduction-1',
591
- content:
592
- 'The text concludes with two stanzas, also spoken by the Buddha, that summarize the sūtra’s message and explain the benefit of maintaining the four factors. These verses present the factors in a slightly different sequence, with tolerance and lenience preceding the factor of the spiritual friend. They also exhort the wise bodhisattva to be as fearless as a lion, “the king of beasts,” while dwelling in the wilderness.',
593
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
594
- annotations: [
595
- {
596
- end: 237,
597
- type: 'glossary-instance',
598
- uuid: '32592c1b-d066-41af-9e95-b5b6e572e4bb',
599
- start: 228,
600
- content: [
601
- {
602
- type: 'glossary',
603
- uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
604
- glossary_xmlId: 'UT22084-066-009-66',
605
- },
606
- ],
607
- passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
608
- },
609
- {
610
- end: 250,
611
- type: 'glossary-instance',
612
- uuid: '3848d908-389e-46f3-9d9b-a6be4ecd9652',
613
- start: 242,
614
- content: [
615
- {
616
- type: 'glossary',
617
- uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
618
- glossary_xmlId: 'UT22084-066-009-65',
619
- },
620
- ],
621
- passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
622
- },
623
- {
624
- end: 295,
625
- type: 'glossary-instance',
626
- uuid: 'a441bbfa-f494-49d1-b0ca-15cca2fec9fe',
627
- start: 279,
628
- content: [
629
- {
630
- type: 'glossary',
631
- uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
632
- glossary_xmlId: 'UT22084-066-009-68',
633
- },
634
- ],
635
- passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
636
- },
637
- {
638
- end: 418,
639
- type: 'glossary-instance',
640
- uuid: '208b82c3-25ef-40fe-a136-1a1110c141dd',
641
- start: 392,
642
- content: [
643
- {
644
- type: 'glossary',
645
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
646
- glossary_xmlId: 'UT22084-066-009-67',
647
- },
648
- ],
649
- passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
650
- },
651
- ],
652
- },
653
- {
654
- sort: 89,
655
- type: 'introduction',
656
- uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
657
- label: 'i.6',
658
- xmlId: 'UT22084-066-009-15',
659
- parent: 'UT22084-066-009-introduction-1',
660
- content:
661
- 'The Chinese Tripiṭaka contains two translations of the sūtra (Taishō 772 & Taishō 773), both by Divākara and dated to 680 ᴄᴇ and 681 ᴄᴇ. The sūtra and commentaries also appear in several manuscripts of the Dunhuang collection. Among those manuscripts is an annotated translation of the sūtra (IOL Tib J 69) that identifies the translators as Surendrabodhi and Yeshe Dé. This manuscript is significant not only because of the annotations to the translation itself but also because the Kangyur versions lack a translator’s colophon (’gyur byang). The sūtra is listed in both the Denkarma and Phangthangma catalogs of translated works, indicating that the first Tibetan translation of the text was complete by the early ninth century.',
662
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
663
- annotations: [
664
- {
665
- end: 0,
666
- type: 'leading-space',
667
- uuid: '8512d924-48b2-477a-a306-35dd5c1b2227',
668
- start: 0,
669
- content: [],
670
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
671
- },
672
- {
673
- end: 72,
674
- type: 'end-note-link',
675
- uuid: '62eb1703-fb29-4c87-addf-cceb31efc04a',
676
- start: 72,
677
- content: [
678
- {
679
- uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
680
- endnote_xmlId: 'UT22084-066-009-16',
681
- },
682
- {
683
- label: '5',
684
- },
685
- ],
686
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
687
- },
688
- {
689
- end: 85,
690
- type: 'end-note-link',
691
- uuid: 'f6eeb3c2-b289-464a-9b5b-a0dee255908e',
692
- start: 85,
693
- content: [
694
- {
695
- uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
696
- endnote_xmlId: 'UT22084-066-009-17',
697
- },
698
- {
699
- label: '6',
700
- },
701
- ],
702
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
703
- },
704
- {
705
- end: 124,
706
- type: 'span',
707
- uuid: '278c349d-783a-489c-8f3d-222b7155fa83',
708
- start: 122,
709
- content: [
710
- {
711
- 'text-style': 'small-caps',
712
- },
713
- ],
714
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
715
- },
716
- {
717
- end: 135,
718
- type: 'span',
719
- uuid: 'e36c2266-0ccb-4fd8-861a-8cc92e31e66e',
720
- start: 133,
721
- content: [
722
- {
723
- 'text-style': 'small-caps',
724
- },
725
- ],
726
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
727
- },
728
- {
729
- end: 136,
730
- type: 'end-note-link',
731
- uuid: 'd1af8487-12fb-42f7-af65-6f3938e5031c',
732
- start: 136,
733
- content: [
734
- {
735
- uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
736
- endnote_xmlId: 'UT22084-066-009-18',
737
- },
738
- {
739
- label: '7',
740
- },
741
- ],
742
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
743
- },
744
- {
745
- end: 542,
746
- type: 'span',
747
- uuid: '88bd7213-631f-418d-9048-62d1cf657acd',
748
- start: 531,
749
- content: [
750
- {
751
- 'text-style': 'foreign',
752
- },
753
- {
754
- lang: 'Bo-Ltn',
755
- },
756
- ],
757
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
758
- },
759
- {
760
- end: 585,
761
- type: 'end-note-link',
762
- uuid: 'afb666ac-6ddc-40ad-b566-750d112ecf8a',
763
- start: 585,
764
- content: [
765
- {
766
- uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
767
- endnote_xmlId: 'UT22084-066-009-19',
768
- },
769
- {
770
- label: '8',
771
- },
772
- ],
773
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
774
- },
775
- {
776
- end: 602,
777
- type: 'end-note-link',
778
- uuid: '492760ba-0dfd-4805-b3db-65fb2d246267',
779
- start: 602,
780
- content: [
781
- {
782
- uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
783
- endnote_xmlId: 'UT22084-066-009-20',
784
- },
785
- {
786
- label: '9',
787
- },
788
- ],
789
- passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
790
- },
791
- ],
792
- },
793
- {
794
- sort: 107,
795
- type: 'introduction',
796
- uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
797
- label: 'i.7',
798
- xmlId: 'UT22084-066-009-9',
799
- parent: 'UT22084-066-009-introduction-1',
800
- content:
801
- 'There is a short commentary on this sūtra attributed to Vasubandhu and preserved in Tibetan in the Tengyur, (*Ārya­catur­dharmaka­vyākhyāna, ’phags pa chos bzhi pa’i rnam par bshad pa, Toh 3990), which we have also translated, as well as a slightly longer commentary on this commentary, attributed to Jñānadatta (: *Āryacatur­dharmaka­vyākhyāna­ṭīkā, ’phags pa chos bzhi pa’i rgya cher bshad pa’i rgya cher ’grel pa, Toh 3990a).',
802
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
803
- annotations: [
804
- {
805
- end: 140,
806
- type: 'inline-title',
807
- uuid: '98855691-6c0e-4f05-bf37-d34e9d0179ca',
808
- start: 110,
809
- content: [
810
- {
811
- lang: 'Sa-Ltn',
812
- },
813
- ],
814
- passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
815
- },
816
- {
817
- end: 184,
818
- type: 'inline-title',
819
- uuid: 'dfde321b-1f10-401e-b2b5-7676b788a04b',
820
- start: 141,
821
- content: [
822
- {
823
- lang: 'Bo-Ltn',
824
- },
825
- ],
826
- passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
827
- },
828
- {
829
- end: 226,
830
- type: 'end-note-link',
831
- uuid: '842de512-4908-4b8b-a5cd-e60d5179182a',
832
- start: 226,
833
- content: [
834
- {
835
- uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
836
- endnote_xmlId: 'UT22084-066-009-209',
837
- },
838
- {
839
- label: '10',
840
- },
841
- ],
842
- passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
843
- },
844
- {
845
- end: 350,
846
- type: 'inline-title',
847
- uuid: '9e0e4fba-1860-444a-8936-0830fa1c1f4d',
848
- start: 316,
849
- content: [
850
- {
851
- lang: 'Sa-Ltn',
852
- },
853
- ],
854
- passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
855
- },
856
- {
857
- end: 416,
858
- type: 'inline-title',
859
- uuid: '17ed5280-b4b0-494f-9359-d0a57d0d3d87',
860
- start: 351,
861
- content: [
862
- {
863
- lang: 'Bo-Ltn',
864
- },
865
- ],
866
- passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
867
- },
868
- ],
869
- },
870
- {
871
- sort: 119,
872
- type: 'introduction',
873
- uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
874
- label: 'i.8',
875
- xmlId: 'UT22084-066-009-10',
876
- parent: 'UT22084-066-009-introduction-1',
877
- content:
878
- 'Several independent treatises found within the Tengyur also make reference to this sūtra. Śāntideva’s Compendium of Training (Śikṣā­samuccaya, Toh 3940), for instance, refers to the second of the four factors when discussing the importance of the teacher. Prajñākaramati also cites the same line in his Commentary on the Difficult Points of the Bodhicaryāvatāra (Bodhi­caryāvatāra­pañjikā; byang chub kyi spyod pa la ’jug pa’i dka’ ’grel, Toh 3872). Vimalamitra refers to the fourth factor on the importance of dwelling in the wilderness in The Meaning of the Gradual Cultivation (rim gyis ’jug pa’i sgom don, Toh 3938). The sūtra has also been cited in works by Tibetan authors. To give just one example, the celebrated Nyingma master Longchen Rabjam (1308–64) quotes the sūtra’s line about the importance of the spiritual friend in the eighth chapter of The White Lotus Autocommentary on the Wish-Fulfilling Treasury (yid bzhin mdzod kyi ’grel pa pad ma dkar po).',
879
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
880
- annotations: [
881
- {
882
- end: 125,
883
- type: 'inline-title',
884
- uuid: '45ede0d6-5ff6-4df7-8697-bb8e24d3a7a7',
885
- start: 102,
886
- content: [
887
- {
888
- lang: 'en',
889
- },
890
- ],
891
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
892
- },
893
- {
894
- end: 142,
895
- type: 'inline-title',
896
- uuid: '138bd714-9fab-4834-91c2-5894d15045ba',
897
- start: 126,
898
- content: [
899
- {
900
- lang: 'Sa-Ltn',
901
- },
902
- ],
903
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
904
- },
905
- {
906
- end: 255,
907
- type: 'end-note-link',
908
- uuid: 'ffad76a0-3a7e-43c5-829f-11205fd28814',
909
- start: 255,
910
- content: [
911
- {
912
- uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
913
- endnote_xmlId: 'UT22084-066-009-11',
914
- },
915
- {
916
- label: '11',
917
- },
918
- ],
919
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
920
- },
921
- {
922
- end: 362,
923
- type: 'inline-title',
924
- uuid: 'a99d4133-d20f-4f79-8586-9a0ee3b5b4cf',
925
- start: 303,
926
- content: [
927
- {
928
- lang: 'en',
929
- },
930
- ],
931
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
932
- },
933
- {
934
- end: 389,
935
- type: 'inline-title',
936
- uuid: '11311772-fe89-4256-a95a-f51b0f8f2662',
937
- start: 363,
938
- content: [
939
- {
940
- lang: 'Sa-Ltn',
941
- },
942
- ],
943
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
944
- },
945
- {
946
- end: 438,
947
- type: 'inline-title',
948
- uuid: 'd717a585-33a1-4ce9-a01c-3d29dc7ad492',
949
- start: 389,
950
- content: [
951
- {
952
- lang: 'Bo-Ltn',
953
- },
954
- ],
955
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
956
- },
957
- {
958
- end: 449,
959
- type: 'end-note-link',
960
- uuid: '95ece1d3-8650-44d4-a091-a1dee6104eea',
961
- start: 449,
962
- content: [
963
- {
964
- uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
965
- endnote_xmlId: 'UT22084-066-009-12',
966
- },
967
- {
968
- label: '12',
969
- },
970
- ],
971
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
972
- },
973
- {
974
- end: 537,
975
- type: 'glossary-instance',
976
- uuid: 'f4c38243-d9ff-4836-b444-862d9c58cd71',
977
- start: 511,
978
- content: [
979
- {
980
- type: 'glossary',
981
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
982
- glossary_xmlId: 'UT22084-066-009-67',
983
- },
984
- ],
985
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
986
- },
987
- {
988
- end: 580,
989
- type: 'inline-title',
990
- uuid: 'bbc624c9-a3da-4545-baaa-755594d07db6',
991
- start: 541,
992
- content: [
993
- {
994
- lang: 'en',
995
- },
996
- ],
997
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
998
- },
999
- {
1000
- end: 609,
1001
- type: 'inline-title',
1002
- uuid: '7bece268-7b1f-4353-b60b-4c783a40702b',
1003
- start: 581,
1004
- content: [
1005
- {
1006
- lang: 'Bo-Ltn',
1007
- },
1008
- ],
1009
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1010
- },
1011
- {
1012
- end: 620,
1013
- type: 'end-note-link',
1014
- uuid: 'c0b56deb-c9e9-416a-84ad-aa62d51eb92d',
1015
- start: 620,
1016
- content: [
1017
- {
1018
- uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
1019
- endnote_xmlId: 'UT22084-066-009-13',
1020
- },
1021
- {
1022
- label: '13',
1023
- },
1024
- ],
1025
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1026
- },
1027
- {
1028
- end: 830,
1029
- type: 'glossary-instance',
1030
- uuid: 'aa4fab69-6fac-40bd-a2db-cd052289c468',
1031
- start: 814,
1032
- content: [
1033
- {
1034
- type: 'glossary',
1035
- uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
1036
- glossary_xmlId: 'UT22084-066-009-68',
1037
- },
1038
- ],
1039
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1040
- },
1041
- {
1042
- end: 919,
1043
- type: 'inline-title',
1044
- uuid: '22241133-0138-4184-b223-137bc10fa43c',
1045
- start: 856,
1046
- content: [
1047
- {
1048
- lang: 'en',
1049
- },
1050
- ],
1051
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1052
- },
1053
- {
1054
- end: 964,
1055
- type: 'inline-title',
1056
- uuid: '551e09fd-991d-4d56-b35c-da2f0e31e395',
1057
- start: 920,
1058
- content: [
1059
- {
1060
- lang: 'Bo-Ltn',
1061
- },
1062
- ],
1063
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1064
- },
1065
- {
1066
- end: 965,
1067
- type: 'end-note-link',
1068
- uuid: '3c71c19a-a396-424b-ad7e-3d44ff2a329c',
1069
- start: 965,
1070
- content: [
1071
- {
1072
- uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
1073
- endnote_xmlId: 'UT22084-066-009-14',
1074
- },
1075
- {
1076
- label: '14',
1077
- },
1078
- ],
1079
- passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1080
- },
1081
- ],
1082
- },
1083
- {
1084
- sort: 151,
1085
- type: 'introduction',
1086
- uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1087
- label: 'i.9',
1088
- xmlId: 'UT22084-066-009-21',
1089
- parent: 'UT22084-066-009-introduction-1',
1090
- content:
1091
- 'A French translation of the sūtra by Léon Feer was first published in 1866 (and reprinted in 1883). Peter Skilling has included a fine English translation along with some helpful notes under the title “Four Dharmas Never to Be Abandoned” in his recent collection Questioning the Buddha: A Selection of Twenty-Five Sutras.',
1092
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1093
- annotations: [
1094
- {
1095
- end: 0,
1096
- type: 'leading-space',
1097
- uuid: '5571fb38-1193-41c0-9741-30d9656f6726',
1098
- start: 0,
1099
- content: [],
1100
- passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1101
- },
1102
- {
1103
- end: 99,
1104
- type: 'end-note-link',
1105
- uuid: '08eaa440-ef51-46f0-ac00-72bdc7de2c16',
1106
- start: 99,
1107
- content: [
1108
- {
1109
- uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
1110
- endnote_xmlId: 'UT22084-066-009-22',
1111
- },
1112
- {
1113
- label: '15',
1114
- },
1115
- ],
1116
- passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1117
- },
1118
- {
1119
- end: 320,
1120
- type: 'inline-title',
1121
- uuid: 'e0477a96-7bef-4e95-b84a-987f1c4f10f1',
1122
- start: 263,
1123
- content: [
1124
- {
1125
- lang: 'en',
1126
- },
1127
- ],
1128
- passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1129
- },
1130
- {
1131
- end: 321,
1132
- type: 'end-note-link',
1133
- uuid: 'b2969d71-74b4-44b0-b42f-8637a6ccc397',
1134
- start: 321,
1135
- content: [
1136
- {
1137
- uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
1138
- endnote_xmlId: 'UT22084-066-009-23',
1139
- },
1140
- {
1141
- label: '16',
1142
- },
1143
- ],
1144
- passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1145
- },
1146
- ],
1147
- },
1148
- {
1149
- sort: 158,
1150
- type: 'introduction',
1151
- uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
1152
- label: 'i.10',
1153
- xmlId: 'UT22084-066-009-24',
1154
- parent: 'UT22084-066-009-introduction-1',
1155
- content:
1156
- 'The following translation was made primarily on the basis of the Degé block print with reference to the Comparative Edition (dpe bsdur ma), the Stok Palace Kangyur, IOL Tib J 69, and the commentaries ascribed to Vasubandhu and Jñānadatta.',
1157
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1158
- annotations: [
1159
- {
1160
- end: 138,
1161
- type: 'inline-title',
1162
- uuid: '6292c481-c7a6-46be-907f-160f6941aedd',
1163
- start: 125,
1164
- content: [
1165
- {
1166
- lang: 'Bo-Ltn',
1167
- },
1168
- ],
1169
- passage_uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
1170
- },
1171
- ],
1172
- },
1173
- {
1174
- sort: 165,
1175
- type: 'translationHeader',
1176
- uuid: '0a812d07-8fcc-41b9-9af5-96ec9bce25d5',
1177
- label: '1.',
1178
- xmlId: 'UT22084-066-009-section-1',
1179
- parent: 'UT22084-066-009-section-1',
1180
- content: 'The Translation',
1181
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1182
- annotations: [
1183
- {
1184
- end: 15,
1185
- type: 'heading',
1186
- uuid: 'c4229046-ec92-4d1e-8bd2-ac9e860d0b64',
1187
- start: 0,
1188
- content: [
1189
- {
1190
- 'heading-level': 'h2',
1191
- },
1192
- {
1193
- 'heading-type': 'section-title',
1194
- },
1195
- ],
1196
- passage_uuid: '0a812d07-8fcc-41b9-9af5-96ec9bce25d5',
1197
- },
1198
- ],
1199
- },
1200
- {
1201
- sort: 166,
1202
- type: 'translation',
1203
- uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1204
- label: 'tr.',
1205
- xmlId: 'UT22084-066-009-body-title',
1206
- parent: 'UT22084-066-009-translation',
1207
- content: 'The Noble Mahāyāna Sūtra on The Four Factors',
1208
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1209
- alignments: [
1210
- {
1211
- toh: 'toh251',
1212
- tibetan:
1213
- '༄༅༅། །རྒྱ་གར་སྐད་དུ། ཨཱརྱ་ཙ་ཏུར་དྷརྨ་ཀཾ་ནཱ་མ་མ་ཧཱ་ཡཱ་ན་སཱུ་ཏྲ། བོད་སྐད་དུ། འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ། ',
1214
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1215
- folio_number: 60,
1216
- volume_number: 66,
1217
- passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1218
- },
1219
- ],
1220
- annotations: [
1221
- {
1222
- end: 28,
1223
- toh: 'toh251',
1224
- type: 'heading',
1225
- uuid: '7184b36c-1264-48fe-9cbf-e36572f3e00f',
1226
- start: 0,
1227
- content: [
1228
- {
1229
- 'heading-level': 'h2',
1230
- },
1231
- {
1232
- 'heading-type': 'body-title-honorific',
1233
- },
1234
- ],
1235
- passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1236
- },
1237
- {
1238
- end: 44,
1239
- toh: 'toh251',
1240
- type: 'heading',
1241
- uuid: 'f5580dae-b137-4614-b4d2-de23f3105982',
1242
- start: 28,
1243
- content: [
1244
- {
1245
- 'heading-level': 'h2',
1246
- },
1247
- {
1248
- 'heading-type': 'body-title-main',
1249
- },
1250
- ],
1251
- passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1252
- },
1253
- {
1254
- end: 28,
1255
- toh: 'toh251',
1256
- type: 'leading-space',
1257
- uuid: 'e134c0c3-e12a-4c6f-b45c-73e3fac2770e',
1258
- start: 28,
1259
- content: [],
1260
- passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1261
- },
1262
- ],
1263
- },
1264
- {
1265
- sort: 168,
1266
- type: 'translation',
1267
- uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
1268
- label: '1.1',
1269
- xmlId: 'UT22084-066-009-26',
1270
- parent: 'UT22084-066-009-section-1',
1271
- content: 'Homage to all the buddhas and bodhisattvas!',
1272
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1273
- alignments: [
1274
- {
1275
- toh: 'toh251',
1276
- tibetan: 'སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ། །',
1277
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1278
- folio_number: 60,
1279
- volume_number: 66,
1280
- passage_uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
1281
- },
1282
- ],
1283
- },
1284
- {
1285
- sort: 170,
1286
- type: 'translation',
1287
- uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1288
- label: '1.2',
1289
- xmlId: 'UT22084-066-009-226',
1290
- parent: 'UT22084-066-009-section-1',
1291
- content:
1292
- 'Thus did I hear at one time. The Buddha was residing in Śrāvastī, in Jeta’s Grove, Anāthapiṇḍada’s park, together with a great community of monks, consisting of 1,250 monks, and a great assembly of bodhisattvas. At that time, the Blessed One addressed the monks:',
1293
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1294
- alignments: [
1295
- {
1296
- toh: 'toh251',
1297
- tibetan:
1298
- 'འདི་སྐད་བདག་གིས་ཐོས་པ་དུས་གཅིག་ན། \nབཅོམ་ལྡན་འདས་མཉན་ཡོད་ན་རྒྱལ་བུ་རྒྱལ་བྱེད་ཀྱི་ཚལ་མགོན་མེད་ཟས་སྦྱིན་གྱི་ཀུན་དགའ་ར་བ་ན། དགེ་སློང་སྟོང་ཉིས་བརྒྱ་ལྔ་བཅུའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་ཐབས་ཅིག་ཏུ་བཞུགས་ཏེ། བྱང་ཆུབ་སེམས་དཔའི་ཚོགས་ཆེན་པོ་དང་ཡང་ཐབས་ཅིག་གོ། །དེ་ནས་བཅོམ་\nལྡན་འདས་ཀྱིས་དགེ་སློང་རྣམས་ལ་བཀའ་སྩལ་པ། ',
1299
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1300
- folio_number: 60,
1301
- volume_number: 66,
1302
- passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1303
- },
1304
- ],
1305
- annotations: [
1306
- {
1307
- end: 0,
1308
- type: 'leading-space',
1309
- uuid: 'c0e02497-7d8e-4150-9178-f13a2ad77d91',
1310
- start: 0,
1311
- content: [],
1312
- passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1313
- },
1314
- {
1315
- end: 64,
1316
- type: 'glossary-instance',
1317
- uuid: '48b09ede-46cf-419a-9ec8-64c4a610b456',
1318
- start: 56,
1319
- content: [
1320
- {
1321
- type: 'glossary',
1322
- uuid: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
1323
- glossary_xmlId: 'UT22084-066-009-72',
1324
- },
1325
- ],
1326
- passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1327
- },
1328
- {
1329
- end: 103,
1330
- type: 'glossary-instance',
1331
- uuid: '4ebf55f0-fddd-45e6-a9af-09997c6f96f5',
1332
- start: 69,
1333
- content: [
1334
- {
1335
- type: 'glossary',
1336
- uuid: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
1337
- glossary_xmlId: 'UT22084-066-009-284',
1338
- },
1339
- ],
1340
- passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1341
- },
1342
- ],
1343
- },
1344
- {
1345
- sort: 176,
1346
- type: 'translation',
1347
- uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
1348
- label: '1.3',
1349
- xmlId: 'UT22084-066-009-30',
1350
- parent: 'UT22084-066-009-section-1',
1351
- content:
1352
- '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon four factors even at the cost of their lives. What are these four?',
1353
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1354
- alignments: [
1355
- {
1356
- toh: 'toh251',
1357
- tibetan:
1358
- 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཆོས་བཞི་པོ་འདི་དག་ཇི་སྲིད་འཚོའི་བར་དུ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏོང་ངོ་། །བཞི་གང་ཞེ་ན། ',
1359
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1360
- folio_number: 60,
1361
- volume_number: 66,
1362
- passage_uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
1363
- },
1364
- ],
1365
- annotations: [
1366
- {
1367
- end: 60,
1368
- type: 'glossary-instance',
1369
- uuid: '73776d26-6858-413b-9d62-5ffe18a59e4c',
1370
- start: 48,
1371
- content: [
1372
- {
1373
- type: 'glossary',
1374
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1375
- glossary_xmlId: 'UT22084-066-009-69',
1376
- },
1377
- ],
1378
- passage_uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
1379
- },
1380
- ],
1381
- },
1382
- {
1383
- sort: 181,
1384
- type: 'translation',
1385
- uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1386
- label: '1.4',
1387
- xmlId: 'UT22084-066-009-31',
1388
- parent: 'UT22084-066-009-section-1',
1389
- content:
1390
- '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon the thought of awakening even at the cost of their lives.',
1391
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1392
- alignments: [
1393
- {
1394
- toh: 'toh251',
1395
- tibetan:
1396
- 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་\nཇི་སྲིད་འཚོའི་བར་དུ་བྱང་ཆུབ་ཀྱི་སེམས་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
1397
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1398
- folio_number: 60,
1399
- volume_number: 66,
1400
- passage_uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1401
- },
1402
- ],
1403
- annotations: [
1404
- {
1405
- end: 60,
1406
- type: 'glossary-instance',
1407
- uuid: '93fb08c3-dabb-45e3-b9d6-05d40fb8df92',
1408
- start: 48,
1409
- content: [
1410
- {
1411
- type: 'glossary',
1412
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1413
- glossary_xmlId: 'UT22084-066-009-69',
1414
- },
1415
- ],
1416
- passage_uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1417
- },
1418
- {
1419
- end: 105,
1420
- type: 'glossary-instance',
1421
- uuid: '7cb61bc2-cf3c-4b28-a026-56062c3febce',
1422
- start: 85,
1423
- content: [
1424
- {
1425
- type: 'glossary',
1426
- uuid: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
1427
- glossary_xmlId: 'UT22084-066-009-64',
1428
- },
1429
- ],
1430
- passage_uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1431
- },
1432
- ],
1433
- },
1434
- {
1435
- sort: 187,
1436
- type: 'translation',
1437
- uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1438
- label: '1.5',
1439
- xmlId: 'UT22084-066-009-32',
1440
- parent: 'UT22084-066-009-section-1',
1441
- content:
1442
- '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon the spiritual friend even at the cost of their lives.',
1443
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1444
- alignments: [
1445
- {
1446
- toh: 'toh251',
1447
- tibetan:
1448
- 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགེ་བའི་བཤེས་གཉེན་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
1449
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1450
- folio_number: 60,
1451
- volume_number: 66,
1452
- passage_uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1453
- },
1454
- ],
1455
- annotations: [
1456
- {
1457
- end: 60,
1458
- type: 'glossary-instance',
1459
- uuid: '1e14fa7b-adde-4991-8b26-3f4ff17ac243',
1460
- start: 48,
1461
- content: [
1462
- {
1463
- type: 'glossary',
1464
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1465
- glossary_xmlId: 'UT22084-066-009-69',
1466
- },
1467
- ],
1468
- passage_uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1469
- },
1470
- {
1471
- end: 101,
1472
- type: 'glossary-instance',
1473
- uuid: 'b720b5d4-3213-4638-b192-eb8e8dca8299',
1474
- start: 85,
1475
- content: [
1476
- {
1477
- type: 'glossary',
1478
- uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
1479
- glossary_xmlId: 'UT22084-066-009-68',
1480
- },
1481
- ],
1482
- passage_uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1483
- },
1484
- ],
1485
- },
1486
- {
1487
- sort: 193,
1488
- type: 'translation',
1489
- uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1490
- label: '1.6',
1491
- xmlId: 'UT22084-066-009-33',
1492
- parent: 'UT22084-066-009-section-1',
1493
- content:
1494
- '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon tolerance and lenience even at the cost of their lives.',
1495
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1496
- alignments: [
1497
- {
1498
- toh: 'toh251',
1499
- tibetan:
1500
- 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་\nདཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་བཟོད་པ་དང་དེས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
1501
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1502
- folio_number: 60,
1503
- volume_number: 66,
1504
- passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1505
- },
1506
- ],
1507
- annotations: [
1508
- {
1509
- end: 60,
1510
- type: 'glossary-instance',
1511
- uuid: '9be0ece5-da55-4d6d-934f-26149e9241ac',
1512
- start: 48,
1513
- content: [
1514
- {
1515
- type: 'glossary',
1516
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1517
- glossary_xmlId: 'UT22084-066-009-69',
1518
- },
1519
- ],
1520
- passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1521
- },
1522
- {
1523
- end: 90,
1524
- type: 'glossary-instance',
1525
- uuid: '247d0cd6-8f48-4e3d-8c70-ab5ddf7f1382',
1526
- start: 81,
1527
- content: [
1528
- {
1529
- type: 'glossary',
1530
- uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
1531
- glossary_xmlId: 'UT22084-066-009-66',
1532
- },
1533
- ],
1534
- passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1535
- },
1536
- {
1537
- end: 103,
1538
- type: 'glossary-instance',
1539
- uuid: 'bc10971b-913a-4a6b-b0cb-888310563c90',
1540
- start: 95,
1541
- content: [
1542
- {
1543
- type: 'glossary',
1544
- uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
1545
- glossary_xmlId: 'UT22084-066-009-65',
1546
- },
1547
- ],
1548
- passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1549
- },
1550
- {
1551
- end: 136,
1552
- type: 'end-note-link',
1553
- uuid: 'de90ce7e-9b47-4324-ae1c-b803ee1cd28e',
1554
- start: 136,
1555
- content: [
1556
- {
1557
- uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
1558
- endnote_xmlId: 'UT22084-066-009-34',
1559
- },
1560
- {
1561
- label: '17',
1562
- },
1563
- ],
1564
- passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1565
- },
1566
- ],
1567
- },
1568
- {
1569
- sort: 202,
1570
- type: 'translation',
1571
- uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1572
- label: '1.7',
1573
- xmlId: 'UT22084-066-009-35',
1574
- parent: 'UT22084-066-009-section-1',
1575
- content:
1576
- '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon dwelling in the wilderness even at the cost of their lives.',
1577
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1578
- alignments: [
1579
- {
1580
- toh: 'toh251',
1581
- tibetan:
1582
- 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགོན་པ་ལ་གནས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱ་སྟེ། ',
1583
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1584
- folio_number: 60,
1585
- volume_number: 66,
1586
- passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1587
- },
1588
- ],
1589
- annotations: [
1590
- {
1591
- end: 60,
1592
- type: 'glossary-instance',
1593
- uuid: '85247b59-0ae2-4dc2-8f1d-fc7d43d18e04',
1594
- start: 48,
1595
- content: [
1596
- {
1597
- type: 'glossary',
1598
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1599
- glossary_xmlId: 'UT22084-066-009-69',
1600
- },
1601
- ],
1602
- passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1603
- },
1604
- {
1605
- end: 107,
1606
- type: 'glossary-instance',
1607
- uuid: '9f5020c2-2a3f-4faa-8d83-e953dfb0b255',
1608
- start: 81,
1609
- content: [
1610
- {
1611
- type: 'glossary',
1612
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
1613
- glossary_xmlId: 'UT22084-066-009-67',
1614
- },
1615
- ],
1616
- passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1617
- },
1618
- {
1619
- end: 107,
1620
- type: 'end-note-link',
1621
- uuid: 'd5f88fe6-79d7-45ed-bf99-2cbfca3bc9f3',
1622
- start: 107,
1623
- content: [
1624
- {
1625
- uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
1626
- endnote_xmlId: 'UT22084-066-009-135',
1627
- },
1628
- {
1629
- label: '18',
1630
- },
1631
- ],
1632
- passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1633
- },
1634
- ],
1635
- },
1636
- {
1637
- sort: 209,
1638
- type: 'translation',
1639
- uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
1640
- label: '1.8',
1641
- xmlId: 'UT22084-066-009-36',
1642
- parent: 'UT22084-066-009-section-1',
1643
- content:
1644
- '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon these four factors even at the cost of their lives.”',
1645
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1646
- alignments: [
1647
- {
1648
- toh: 'toh251',
1649
- tibetan:
1650
- 'དགེ་སློང་དག་བྱང་ཆུབ་\nསེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་ཆོས་བཞི་པོ་འདི་དག་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱའོ། །',
1651
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1652
- folio_number: 60,
1653
- volume_number: 66,
1654
- passage_uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
1655
- },
1656
- ],
1657
- annotations: [
1658
- {
1659
- end: 60,
1660
- type: 'glossary-instance',
1661
- uuid: 'f78b3d56-2441-426f-ae87-8285bb46c82a',
1662
- start: 48,
1663
- content: [
1664
- {
1665
- type: 'glossary',
1666
- uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1667
- glossary_xmlId: 'UT22084-066-009-69',
1668
- },
1669
- ],
1670
- passage_uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
1671
- },
1672
- ],
1673
- },
1674
- {
1675
- sort: 213,
1676
- type: 'translation',
1677
- uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
1678
- label: '1.9',
1679
- xmlId: 'UT22084-066-009-37',
1680
- parent: 'UT22084-066-009-section-1',
1681
- content:
1682
- 'The Blessed One spoke these words, and once the Sugata had spoken in this way, he, the Teacher, also said the following:',
1683
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1684
- alignments: [
1685
- {
1686
- toh: 'toh251',
1687
- tibetan:
1688
- 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ཏེ། བདེ་བར་གཤེགས་པས་དེ་སྐད་གསུངས་ནས། སྟོན་པས་གཞན་ཡང་འདི་སྐད་བཀའ་སྩལ་\nཏོ། །',
1689
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1690
- folio_number: 60,
1691
- volume_number: 66,
1692
- passage_uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
1693
- },
1694
- ],
1695
- },
1696
- {
1697
- sort: 215,
1698
- type: 'translation',
1699
- uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1700
- label: '1.10',
1701
- xmlId: 'UT22084-066-009-38',
1702
- parent: 'UT22084-066-009-section-1',
1703
- content:
1704
- '“Let the wise conceive the thought of perfect awakening, And not cast aside the thought of omniscience; Let them maintain the strength of tolerance and lenience, And never forsake the spiritual friend.',
1705
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1706
- alignments: [
1707
- {
1708
- toh: 'toh251',
1709
- tibetan:
1710
- 'ཐམས་ཅད་མཁྱེན་ཉིད་སེམས་ནི་མི་གཏོང་ཞིང་། །མཁས་པས་རྫོགས་པའི་བྱང་ཆུབ་སེམས་སྐྱེད་ཅིག །བཟོད་པ་དེས་པའི་སྟོབས་ལ་རབ་གནས་ཏེ། །དགེ་བའི་བཤེས་གཉེན་ཡོངས་སུ་གཏང་མི་བྱ། །',
1711
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1712
- folio_number: 60,
1713
- volume_number: 66,
1714
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1715
- },
1716
- ],
1717
- annotations: [
1718
- {
1719
- end: 201,
1720
- type: 'line-group',
1721
- uuid: '7d2b05e7-c63f-40ea-8e6b-3ccefb83c603',
1722
- start: 0,
1723
- content: [],
1724
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1725
- },
1726
- {
1727
- end: 57,
1728
- type: 'line',
1729
- uuid: '181a3584-20b8-4d6e-a0e5-c0ea733dbae6',
1730
- start: 0,
1731
- content: [],
1732
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1733
- },
1734
- {
1735
- end: 104,
1736
- type: 'line',
1737
- uuid: 'ca6b3880-1040-4920-b1ce-e80aa7e7bcd7',
1738
- start: 57,
1739
- content: [],
1740
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1741
- },
1742
- {
1743
- end: 102,
1744
- type: 'end-note-link',
1745
- uuid: 'bc5071aa-2099-4323-a353-6318e01de343',
1746
- start: 102,
1747
- content: [
1748
- {
1749
- uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
1750
- endnote_xmlId: 'UT22084-066-009-39',
1751
- },
1752
- {
1753
- label: '19',
1754
- },
1755
- ],
1756
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1757
- },
1758
- {
1759
- end: 162,
1760
- type: 'line',
1761
- uuid: '196aa179-8cea-4525-8a41-19eb0781312f',
1762
- start: 104,
1763
- content: [],
1764
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1765
- },
1766
- {
1767
- end: 147,
1768
- type: 'glossary-instance',
1769
- uuid: '79f4938e-df3c-40c8-a618-fa188a124517',
1770
- start: 138,
1771
- content: [
1772
- {
1773
- type: 'glossary',
1774
- uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
1775
- glossary_xmlId: 'UT22084-066-009-66',
1776
- },
1777
- ],
1778
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1779
- },
1780
- {
1781
- end: 160,
1782
- type: 'glossary-instance',
1783
- uuid: 'dd65abe5-d658-40d9-820d-d9c427e40f5e',
1784
- start: 152,
1785
- content: [
1786
- {
1787
- type: 'glossary',
1788
- uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
1789
- glossary_xmlId: 'UT22084-066-009-65',
1790
- },
1791
- ],
1792
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1793
- },
1794
- {
1795
- end: 201,
1796
- type: 'line',
1797
- uuid: 'cf054120-9398-4855-8c62-3677041041d4',
1798
- start: 162,
1799
- content: [],
1800
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1801
- },
1802
- {
1803
- end: 200,
1804
- type: 'glossary-instance',
1805
- uuid: '83d1bcb5-15ed-492b-a401-d59e7a0c0ad3',
1806
- start: 184,
1807
- content: [
1808
- {
1809
- type: 'glossary',
1810
- uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
1811
- glossary_xmlId: 'UT22084-066-009-68',
1812
- },
1813
- ],
1814
- passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1815
- },
1816
- ],
1817
- },
1818
- {
1819
- sort: 230,
1820
- type: 'translation',
1821
- uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1822
- label: '1.11',
1823
- xmlId: 'UT22084-066-009-40',
1824
- parent: 'UT22084-066-009-section-1',
1825
- content:
1826
- '“If the wise, like the king of beasts, abandon fear, Always remain dwelling in the wilderness, And constantly maintain these factors, They will conquer the māras and attain awakening.”',
1827
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1828
- alignments: [
1829
- {
1830
- toh: 'toh251',
1831
- tibetan:
1832
- 'རི་དགས་རྒྱལ་པོ་བཞིན་དུ་འཇིགས་སྤངས་ཏེ། །མཁས་[F.61.a]པས་དགོན་གནས་རྟག་ཏུ་བསྟེན་པར་བྱ། །ཆོས་འདི་དག་ལ་རྟག་ཏུ་རབ་གནས་ན། །བདུད་རྣམས་བཅོམ་ནས་བྱང་ཆུབ་དེ་འཚང་རྒྱ། །',
1833
- folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1834
- folio_number: 60,
1835
- volume_number: 66,
1836
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1837
- },
1838
- ],
1839
- annotations: [
1840
- {
1841
- end: 184,
1842
- type: 'line-group',
1843
- uuid: 'e9eec4aa-3a9f-435b-9111-4aa27a3deb11',
1844
- start: 0,
1845
- content: [],
1846
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1847
- },
1848
- {
1849
- end: 53,
1850
- type: 'line',
1851
- uuid: '9b820bc7-def0-484e-bdd8-088d19e37b48',
1852
- start: 0,
1853
- content: [],
1854
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1855
- },
1856
- {
1857
- end: 95,
1858
- type: 'line',
1859
- uuid: 'd65f874d-9d51-42f3-aa8d-60a200f566fd',
1860
- start: 53,
1861
- content: [],
1862
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1863
- },
1864
- {
1865
- end: 93,
1866
- type: 'glossary-instance',
1867
- uuid: 'cc951a6e-3334-4f23-8727-8d1b9807e186',
1868
- start: 67,
1869
- content: [
1870
- {
1871
- type: 'glossary',
1872
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
1873
- glossary_xmlId: 'UT22084-066-009-67',
1874
- },
1875
- ],
1876
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1877
- },
1878
- {
1879
- end: 134,
1880
- type: 'line',
1881
- uuid: '7defb520-391b-488f-8821-ab35d7fac408',
1882
- start: 95,
1883
- content: [],
1884
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1885
- },
1886
- {
1887
- end: 184,
1888
- type: 'line',
1889
- uuid: 'e003cc18-27e1-4be5-b52d-ed4230eaf692',
1890
- start: 134,
1891
- content: [],
1892
- passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1893
- },
1894
- ],
1895
- },
1896
- {
1897
- sort: 241,
1898
- type: 'translation',
1899
- uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
1900
- label: '1.12',
1901
- xmlId: 'UT22084-066-009-41',
1902
- parent: 'UT22084-066-009-section-1',
1903
- content:
1904
- 'When the Blessed One had said this, the monks and bodhisattvas, together with the entire assembly, rejoiced and praised the words of the Blessed One.',
1905
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1906
- alignments: [
1907
- {
1908
- toh: 'toh251',
1909
- tibetan:
1910
- 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ནས། དགེ་སློང་དེ་དག་དང་། བྱང་ཆུབ་སེམས་དཔའ་དེ་དག་དང་། \nཐམས་ཅད་དང་ལྡན་པའི་འཁོར་དེ་དག་ཡི་རངས་ཏེ། བཅོམ་ལྡན་འདས་ཀྱིས་གསུངས་པ་ལ་མངོན་པར་བསྟོད་དོ།། །།',
1911
- folio_uuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
1912
- folio_number: 61,
1913
- volume_number: 66,
1914
- passage_uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
1915
- },
1916
- ],
1917
- },
1918
- {
1919
- sort: 243,
1920
- type: 'translation',
1921
- uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1922
- label: '1.13',
1923
- xmlId: 'UT22084-066-009-42',
1924
- parent: 'UT22084-066-009-section-1',
1925
- content: 'This concludes “The Noble Mahāyāna Sūtra on the Four Factors.”',
1926
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1927
- alignments: [
1928
- {
1929
- toh: 'toh251',
1930
- tibetan: 'འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ་རྫོགས་སོ། །',
1931
- folio_uuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
1932
- folio_number: 61,
1933
- volume_number: 66,
1934
- passage_uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1935
- },
1936
- ],
1937
- annotations: [
1938
- {
1939
- end: 62,
1940
- type: 'trailer',
1941
- uuid: '76612414-df30-4c73-89fa-139e794a4a4d',
1942
- start: 0,
1943
- content: [],
1944
- passage_uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1945
- },
1946
- {
1947
- end: 62,
1948
- type: 'inline-title',
1949
- uuid: '895f43ec-7189-4273-b067-d557523723aa',
1950
- start: 15,
1951
- content: [
1952
- {
1953
- lang: 'en',
1954
- },
1955
- ],
1956
- passage_uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1957
- },
1958
- ],
1959
- },
1960
- {
1961
- sort: 246,
1962
- type: 'endnotesHeader',
1963
- uuid: 'de4cfc5e-5984-4269-a6da-41041aebda05',
1964
- label: 'n.',
1965
- xmlId: 'UT22084-066-009-end-notes',
1966
- parent: 'UT22084-066-009-end-notes',
1967
- content: 'Notes',
1968
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1969
- annotations: [
1970
- {
1971
- end: 5,
1972
- type: 'heading',
1973
- uuid: '7f292b93-a6d6-408a-8cc2-44eabf24b79a',
1974
- start: 0,
1975
- content: [
1976
- {
1977
- 'heading-level': 'h2',
1978
- },
1979
- {
1980
- 'heading-type': 'section-title',
1981
- },
1982
- ],
1983
- passage_uuid: 'de4cfc5e-5984-4269-a6da-41041aebda05',
1984
- },
1985
- ],
1986
- },
1987
- {
1988
- sort: 248,
1989
- type: 'endnotes',
1990
- uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
1991
- label: 'n.1',
1992
- xmlId: 'UT22084-066-009-59',
1993
- parent: 'UT22084-066-009-end-notes',
1994
- content:
1995
- 'Pearcey, Adam. trans. (2019), The Sūtra Teaching the Four Factors, Toh 249 (84000: Translating the Words of the Buddha, 2019).',
1996
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1997
- annotations: [
1998
- {
1999
- end: 66,
2000
- type: 'internal-link',
2001
- uuid: 'cb3ad8fd-6a43-40fa-8751-8f6a6c61861f',
2002
- start: 30,
2003
- content: [
2004
- {
2005
- type: 'work',
2006
- },
2007
- {
2008
- href: '/translation/toh249.html',
2009
- },
2010
- {
2011
- uuid: 'c0ca609d-29b7-4fef-8ea1-8db78310f1bb',
2012
- },
2013
- ],
2014
- passage_uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
2015
- },
2016
- {
2017
- end: 66,
2018
- type: 'inline-title',
2019
- uuid: '2cfd2746-55cd-4798-955c-95ee8a1eeaa3',
2020
- start: 30,
2021
- content: [
2022
- {
2023
- lang: 'en',
2024
- },
2025
- ],
2026
- passage_uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
2027
- },
2028
- ],
2029
- },
2030
- {
2031
- sort: 252,
2032
- type: 'endnotes',
2033
- uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
2034
- label: 'n.2',
2035
- xmlId: 'UT22084-066-009-207',
2036
- parent: 'UT22084-066-009-end-notes',
2037
- content:
2038
- 'Pearcey, Adam. trans. (2023a), The Four Factors, Toh 250 (84000: Translating the Words of the Buddha, 2023).',
2039
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2040
- annotations: [
2041
- {
2042
- end: 48,
2043
- type: 'internal-link',
2044
- uuid: '2a8dfa10-5a27-4434-b09e-c19e88bdfc39',
2045
- start: 31,
2046
- content: [
2047
- {
2048
- type: 'work',
2049
- },
2050
- {
2051
- href: '/translation/toh250.html',
2052
- },
2053
- {
2054
- uuid: '194ce59e-f1a7-48ed-a3a2-e07e3164ec71',
2055
- },
2056
- ],
2057
- passage_uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
2058
- },
2059
- {
2060
- end: 48,
2061
- type: 'inline-title',
2062
- uuid: '5fc6af77-5fd7-4671-8ebc-41f9f83713c8',
2063
- start: 31,
2064
- content: [
2065
- {
2066
- lang: 'en',
2067
- },
2068
- ],
2069
- passage_uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
2070
- },
2071
- ],
2072
- },
2073
- {
2074
- sort: 256,
2075
- type: 'endnotes',
2076
- uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
2077
- label: 'n.3',
2078
- xmlId: 'UT22084-066-009-281',
2079
- parent: 'UT22084-066-009-end-notes',
2080
- content:
2081
- 'Dharmachakra Translation Committee, trans., The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa, Toh 248 (84000: Translating the Words of the Buddha, 2024).',
2082
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2083
- annotations: [
2084
- {
2085
- end: 123,
2086
- type: 'inline-title',
2087
- uuid: '03764b3f-fe7c-491e-87fd-49c659738c26',
2088
- start: 44,
2089
- content: [
2090
- {
2091
- lang: 'en',
2092
- },
2093
- ],
2094
- passage_uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
2095
- },
2096
- {
2097
- end: 123,
2098
- type: 'internal-link',
2099
- uuid: 'f6940a51-2d3e-4d84-97bf-47e63b0da500',
2100
- start: 44,
2101
- content: [
2102
- {
2103
- type: 'work',
2104
- },
2105
- {
2106
- href: '/translation/toh248.html',
2107
- },
2108
- {
2109
- uuid: '93e4b079-d91a-4928-92f2-a49ee367c0f0',
2110
- },
2111
- ],
2112
- passage_uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
2113
- },
2114
- ],
2115
- },
2116
- {
2117
- sort: 260,
2118
- type: 'endnotes',
2119
- uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
2120
- label: 'n.4',
2121
- xmlId: 'UT22084-066-009-62',
2122
- parent: 'UT22084-066-009-end-notes',
2123
- content:
2124
- 'Dharmachakra Translation Committee, trans., The Fourfold Accomplishment, Toh 252 (84000: Translating the Words of the Buddha, 2020).',
2125
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2126
- annotations: [
2127
- {
2128
- end: 72,
2129
- type: 'internal-link',
2130
- uuid: 'f21ac788-e300-4a65-870c-ca7b4af0376a',
2131
- start: 44,
2132
- content: [
2133
- {
2134
- type: 'work',
2135
- },
2136
- {
2137
- href: '/translation/toh252.html',
2138
- },
2139
- {
2140
- uuid: '42cb94e9-b9a4-4daf-ab22-c5e87da4fb68',
2141
- },
2142
- ],
2143
- passage_uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
2144
- },
2145
- {
2146
- end: 72,
2147
- type: 'inline-title',
2148
- uuid: 'd639dd75-92fa-4eaa-90e1-ce07a4df2643',
2149
- start: 44,
2150
- content: [
2151
- {
2152
- lang: 'en',
2153
- },
2154
- ],
2155
- passage_uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
2156
- },
2157
- ],
2158
- },
2159
- {
2160
- sort: 264,
2161
- type: 'endnotes',
2162
- uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2163
- label: 'n.5',
2164
- xmlId: 'UT22084-066-009-16',
2165
- parent: 'UT22084-066-009-end-notes',
2166
- content:
2167
- 'Dasheng si fa jing 大乘四法經 (Caturdharmaka­sūtra), Taishō 772 (CBETA; SAT).',
2168
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2169
- annotations: [
2170
- {
2171
- end: 18,
2172
- type: 'span',
2173
- uuid: '13ec8d04-16ed-4a2d-a294-27540910889f',
2174
- start: 0,
2175
- content: [
2176
- {
2177
- 'text-style': 'foreign',
2178
- },
2179
- ],
2180
- passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2181
- },
2182
- {
2183
- end: 24,
2184
- type: 'span',
2185
- uuid: 'b821485c-0121-4907-8ad6-05f0d984ab62',
2186
- start: 19,
2187
- content: [
2188
- {
2189
- 'text-style': 'foreign',
2190
- },
2191
- {
2192
- lang: 'zh',
2193
- },
2194
- ],
2195
- passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2196
- },
2197
- {
2198
- end: 45,
2199
- type: 'span',
2200
- uuid: '0da63d9b-3ce4-47a5-b7a2-3a65700faccc',
2201
- start: 26,
2202
- content: [
2203
- {
2204
- 'text-style': 'foreign',
2205
- },
2206
- {
2207
- lang: 'Sa-Ltn',
2208
- },
2209
- ],
2210
- passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2211
- },
2212
- {
2213
- end: 65,
2214
- type: 'link',
2215
- uuid: 'c972c0f2-1273-4064-a26c-dda965b3f3ef',
2216
- start: 60,
2217
- content: [
2218
- {
2219
- href: 'https://cbetaonline.dila.edu.tw/en/T0772',
2220
- },
2221
- ],
2222
- passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2223
- },
2224
- {
2225
- end: 70,
2226
- type: 'link',
2227
- uuid: 'c19d9278-b438-41c4-9fef-724ade24c99b',
2228
- start: 67,
2229
- content: [
2230
- {
2231
- href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0772.html',
2232
- },
2233
- ],
2234
- passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2235
- },
2236
- ],
2237
- },
2238
- {
2239
- sort: 275,
2240
- type: 'endnotes',
2241
- uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2242
- label: 'n.6',
2243
- xmlId: 'UT22084-066-009-17',
2244
- parent: 'UT22084-066-009-end-notes',
2245
- content:
2246
- 'Fo shuo pusa xiuxing si fa jing 佛說菩薩修行四法經 (Catur­dharmaka­sūtra), Taishō 773 (CBETA; SAT).',
2247
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2248
- annotations: [
2249
- {
2250
- end: 31,
2251
- type: 'span',
2252
- uuid: '1d3eb7c1-97e9-4b08-9696-91c3b043b831',
2253
- start: 0,
2254
- content: [
2255
- {
2256
- 'text-style': 'foreign',
2257
- },
2258
- ],
2259
- passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2260
- },
2261
- {
2262
- end: 41,
2263
- type: 'span',
2264
- uuid: '3f48a8ce-1783-4c7e-8b7f-61f6f9dd891e',
2265
- start: 32,
2266
- content: [
2267
- {
2268
- 'text-style': 'foreign',
2269
- },
2270
- {
2271
- lang: 'zh',
2272
- },
2273
- ],
2274
- passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2275
- },
2276
- {
2277
- end: 63,
2278
- type: 'span',
2279
- uuid: '2775b577-6d79-44d6-b30e-a73e93b2b8a7',
2280
- start: 43,
2281
- content: [
2282
- {
2283
- 'text-style': 'foreign',
2284
- },
2285
- {
2286
- lang: 'Sa-Ltn',
2287
- },
2288
- ],
2289
- passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2290
- },
2291
- {
2292
- end: 83,
2293
- type: 'link',
2294
- uuid: 'cd991891-b206-4212-ab0e-8109e88c9c17',
2295
- start: 78,
2296
- content: [
2297
- {
2298
- href: 'https://cbetaonline.dila.edu.tw/en/T0773',
2299
- },
2300
- ],
2301
- passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2302
- },
2303
- {
2304
- end: 88,
2305
- type: 'link',
2306
- uuid: '27cafadb-4372-449d-9982-3d804650e81c',
2307
- start: 85,
2308
- content: [
2309
- {
2310
- href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0773.html',
2311
- },
2312
- ],
2313
- passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2314
- },
2315
- ],
2316
- },
2317
- {
2318
- sort: 286,
2319
- type: 'endnotes',
2320
- uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
2321
- label: 'n.7',
2322
- xmlId: 'UT22084-066-009-18',
2323
- parent: 'UT22084-066-009-end-notes',
2324
- content: 'See Skilling (2021), pp. 200–1.',
2325
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2326
- },
2327
- {
2328
- sort: 288,
2329
- type: 'endnotes',
2330
- uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
2331
- label: 'n.8',
2332
- xmlId: 'UT22084-066-009-19',
2333
- parent: 'UT22084-066-009-end-notes',
2334
- content:
2335
- 'See Denkarma, F.300.a.2. See also Herrmann-Pfandt (2008), pp. 125–26, no. 238.',
2336
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2337
- },
2338
- {
2339
- sort: 290,
2340
- type: 'endnotes',
2341
- uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
2342
- label: 'n.9',
2343
- xmlId: 'UT22084-066-009-20',
2344
- parent: 'UT22084-066-009-end-notes',
2345
- content: 'dkar chag ’phang thang ma, p. 18.',
2346
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2347
- annotations: [
2348
- {
2349
- end: 26,
2350
- type: 'inline-title',
2351
- uuid: '5761cf68-3cc7-4b50-860d-29cec085298c',
2352
- start: 0,
2353
- content: [
2354
- {
2355
- lang: 'Bo-Ltn',
2356
- },
2357
- ],
2358
- passage_uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
2359
- },
2360
- ],
2361
- },
2362
- {
2363
- sort: 293,
2364
- type: 'endnotes',
2365
- uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
2366
- label: 'n.10',
2367
- xmlId: 'UT22084-066-009-209',
2368
- parent: 'UT22084-066-009-end-notes',
2369
- content:
2370
- 'See Pearcey (2023b), An Explanation of The Noble Sūtra on the Four Factors.',
2371
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2372
- annotations: [
2373
- {
2374
- end: 75,
2375
- type: 'internal-link',
2376
- uuid: '9019115c-e8e4-4f69-96cd-e907051b62c0',
2377
- start: 21,
2378
- content: [
2379
- {
2380
- type: 'work',
2381
- },
2382
- {
2383
- href: '/translation/toh3990.html',
2384
- },
2385
- {
2386
- uuid: 'e8ef6b9a-df09-4ebc-8760-4b1a21402e2f',
2387
- },
2388
- ],
2389
- passage_uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
2390
- },
2391
- {
2392
- end: 75,
2393
- type: 'inline-title',
2394
- uuid: '5d996a48-b748-422b-9f78-dea398efed1f',
2395
- start: 21,
2396
- content: [
2397
- {
2398
- lang: 'en',
2399
- },
2400
- ],
2401
- passage_uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
2402
- },
2403
- ],
2404
- },
2405
- {
2406
- sort: 297,
2407
- type: 'endnotes',
2408
- uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
2409
- label: 'n.11',
2410
- xmlId: 'UT22084-066-009-11',
2411
- parent: 'UT22084-066-009-end-notes',
2412
- content:
2413
- 'Śāntideva, 29a.4. Translations appear in Bendall & Rouse (1922), p. 43, and Goodman (2016), p. 44.',
2414
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2415
- },
2416
- {
2417
- sort: 299,
2418
- type: 'endnotes',
2419
- uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
2420
- label: 'n.12',
2421
- xmlId: 'UT22084-066-009-12',
2422
- parent: 'UT22084-066-009-end-notes',
2423
- content: 'Prajñākaramati, 107a.5.',
2424
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2425
- },
2426
- {
2427
- sort: 301,
2428
- type: 'endnotes',
2429
- uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
2430
- label: 'n.13',
2431
- xmlId: 'UT22084-066-009-13',
2432
- parent: 'UT22084-066-009-end-notes',
2433
- content: 'Vimalamitra, 353a.3.',
2434
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2435
- },
2436
- {
2437
- sort: 303,
2438
- type: 'endnotes',
2439
- uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
2440
- label: 'n.14',
2441
- xmlId: 'UT22084-066-009-14',
2442
- parent: 'UT22084-066-009-end-notes',
2443
- content: 'See Longchen Rabjam (2009), vol. 13, 249–50.',
2444
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2445
- },
2446
- {
2447
- sort: 305,
2448
- type: 'endnotes',
2449
- uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
2450
- label: 'n.15',
2451
- xmlId: 'UT22084-066-009-22',
2452
- parent: 'UT22084-066-009-end-notes',
2453
- content: 'Feer (1866), pp. 299–302.',
2454
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2455
- },
2456
- {
2457
- sort: 307,
2458
- type: 'endnotes',
2459
- uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
2460
- label: 'n.16',
2461
- xmlId: 'UT22084-066-009-23',
2462
- parent: 'UT22084-066-009-end-notes',
2463
- content: 'Skilling (2021), pp. 199–205.',
2464
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2465
- },
2466
- {
2467
- sort: 309,
2468
- type: 'endnotes',
2469
- uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2470
- label: 'n.17',
2471
- xmlId: 'UT22084-066-009-34',
2472
- parent: 'UT22084-066-009-end-notes',
2473
- content:
2474
- 'According to Jñānadatta’s commentary, tolerance (kṣanti; bzod pa) means bearing the harm done to one by others (pha rol gyi gnod pa byas pa la bzod pa), and lenience (sauratya; des pa) means refraining from harming them (pha rol la gnod pa mi byed pa).',
2475
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2476
- annotations: [
2477
- {
2478
- end: 47,
2479
- type: 'glossary-instance',
2480
- uuid: 'b184bb78-4e5b-4fa7-bf1d-84fe80b897b1',
2481
- start: 38,
2482
- content: [
2483
- {
2484
- type: 'glossary',
2485
- uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
2486
- glossary_xmlId: 'UT22084-066-009-66',
2487
- },
2488
- ],
2489
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2490
- },
2491
- {
2492
- end: 55,
2493
- type: 'span',
2494
- uuid: '2c487496-029b-43b1-81f2-3900d58f2d37',
2495
- start: 49,
2496
- content: [
2497
- {
2498
- 'text-style': 'foreign',
2499
- },
2500
- {
2501
- lang: 'Sa-Ltn',
2502
- },
2503
- ],
2504
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2505
- },
2506
- {
2507
- end: 64,
2508
- type: 'span',
2509
- uuid: '16a0ffde-39cc-47b6-b2e7-a0a8e0ffaf08',
2510
- start: 57,
2511
- content: [
2512
- {
2513
- 'text-style': 'foreign',
2514
- },
2515
- {
2516
- lang: 'Bo-Ltn',
2517
- },
2518
- ],
2519
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2520
- },
2521
- {
2522
- end: 150,
2523
- type: 'span',
2524
- uuid: '5cb8b347-3e3a-4901-8e41-127f200b8596',
2525
- start: 112,
2526
- content: [
2527
- {
2528
- 'text-style': 'foreign',
2529
- },
2530
- {
2531
- lang: 'Bo-Ltn',
2532
- },
2533
- ],
2534
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2535
- },
2536
- {
2537
- end: 165,
2538
- type: 'glossary-instance',
2539
- uuid: '98fd6e70-d5c4-4440-b9bb-5d8c42825a13',
2540
- start: 157,
2541
- content: [
2542
- {
2543
- type: 'glossary',
2544
- uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
2545
- glossary_xmlId: 'UT22084-066-009-65',
2546
- },
2547
- ],
2548
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2549
- },
2550
- {
2551
- end: 175,
2552
- type: 'span',
2553
- uuid: '7d48d3fc-c8b5-4c97-9d70-d559640db6e9',
2554
- start: 167,
2555
- content: [
2556
- {
2557
- 'text-style': 'foreign',
2558
- },
2559
- {
2560
- lang: 'Sa-Ltn',
2561
- },
2562
- ],
2563
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2564
- },
2565
- {
2566
- end: 183,
2567
- type: 'span',
2568
- uuid: '356930fd-869d-4026-86cb-3cce2f500ca1',
2569
- start: 177,
2570
- content: [
2571
- {
2572
- 'text-style': 'foreign',
2573
- },
2574
- {
2575
- lang: 'Bo-Ltn',
2576
- },
2577
- ],
2578
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2579
- },
2580
- {
2581
- end: 250,
2582
- type: 'span',
2583
- uuid: 'ac2fd54f-4199-4e16-bd6e-f16fdb05e27b',
2584
- start: 221,
2585
- content: [
2586
- {
2587
- 'text-style': 'foreign',
2588
- },
2589
- {
2590
- lang: 'Bo-Ltn',
2591
- },
2592
- ],
2593
- passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2594
- },
2595
- ],
2596
- },
2597
- {
2598
- sort: 327,
2599
- type: 'endnotes',
2600
- uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2601
- label: 'n.18',
2602
- xmlId: 'UT22084-066-009-135',
2603
- parent: 'UT22084-066-009-end-notes',
2604
- content:
2605
- 'Dwelling in the wilderness is also one of the twelve ascetic practices (dhūtaguṇa). Note that related to (and sometimes conflated with) the Sanskrit araṇya in the compound araṇyavāsa‍—attested for dgon pa la gnas pa not in this text but in the Sanskrit of the Rāṣṭra­pāla­paripṛcchā (Toh 62)‍—is another term, araṇa, in the compound araṇa­vihāra, of which the Tibetan rendering is nyon mongs pa med par gnas pa (Mvy 6366), with the more “inner” meaning of “dwelling free of afflicted mental states.” See Edgerton s.v. araṇya and araṇya.',
2606
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2607
- annotations: [
2608
- {
2609
- end: 26,
2610
- type: 'glossary-instance',
2611
- uuid: '3ea8bb1a-1077-406a-bd76-14f4499f0717',
2612
- start: 0,
2613
- content: [
2614
- {
2615
- type: 'glossary',
2616
- uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
2617
- glossary_xmlId: 'UT22084-066-009-67',
2618
- },
2619
- ],
2620
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2621
- },
2622
- {
2623
- end: 81,
2624
- type: 'span',
2625
- uuid: '3272a842-73c7-48d6-bc39-d063a7cbf278',
2626
- start: 72,
2627
- content: [
2628
- {
2629
- 'text-style': 'foreign',
2630
- },
2631
- {
2632
- lang: 'Sa-Ltn',
2633
- },
2634
- ],
2635
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2636
- },
2637
- {
2638
- end: 155,
2639
- type: 'span',
2640
- uuid: '2a54ebff-8aad-4e0d-a530-d8f6767e79b8',
2641
- start: 149,
2642
- content: [
2643
- {
2644
- 'text-style': 'foreign',
2645
- },
2646
- {
2647
- lang: 'Sa-Ltn',
2648
- },
2649
- ],
2650
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2651
- },
2652
- {
2653
- end: 182,
2654
- type: 'span',
2655
- uuid: 'd837f02b-4718-41fc-9d95-a8ceb9f2854b',
2656
- start: 172,
2657
- content: [
2658
- {
2659
- 'text-style': 'foreign',
2660
- },
2661
- {
2662
- lang: 'Sa-Ltn',
2663
- },
2664
- ],
2665
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2666
- },
2667
- {
2668
- end: 215,
2669
- type: 'span',
2670
- uuid: '1b620ad5-e418-4ae4-a2a6-fc1f7963649f',
2671
- start: 197,
2672
- content: [
2673
- {
2674
- 'text-style': 'foreign',
2675
- },
2676
- {
2677
- lang: 'Bo-Ltn',
2678
- },
2679
- ],
2680
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2681
- },
2682
- {
2683
- end: 283,
2684
- type: 'inline-title',
2685
- uuid: 'e4e17479-7e3c-4636-af88-1b2e80d42c53',
2686
- start: 260,
2687
- content: [
2688
- {
2689
- lang: 'Sa-Ltn',
2690
- },
2691
- ],
2692
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2693
- },
2694
- {
2695
- end: 315,
2696
- type: 'span',
2697
- uuid: 'ea407cbe-77c5-4341-834a-0abbe5a4fc94',
2698
- start: 310,
2699
- content: [
2700
- {
2701
- 'text-style': 'foreign',
2702
- },
2703
- {
2704
- lang: 'Sa-Ltn',
2705
- },
2706
- ],
2707
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2708
- },
2709
- {
2710
- end: 345,
2711
- type: 'span',
2712
- uuid: '54764895-a14c-43a4-bad0-8796eec28c36',
2713
- start: 333,
2714
- content: [
2715
- {
2716
- 'text-style': 'foreign',
2717
- },
2718
- {
2719
- lang: 'Sa-Ltn',
2720
- },
2721
- ],
2722
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2723
- },
2724
- {
2725
- end: 410,
2726
- type: 'span',
2727
- uuid: '13da046b-591d-4293-b2c0-bc917e4d2397',
2728
- start: 381,
2729
- content: [
2730
- {
2731
- 'text-style': 'foreign',
2732
- },
2733
- {
2734
- lang: 'Bo-Ltn',
2735
- },
2736
- ],
2737
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2738
- },
2739
- {
2740
- end: 524,
2741
- type: 'span',
2742
- uuid: 'e7f68c19-e746-49b5-a822-7b7a276f1fc7',
2743
- start: 518,
2744
- content: [
2745
- {
2746
- 'text-style': 'foreign',
2747
- },
2748
- {
2749
- lang: 'Sa-Ltn',
2750
- },
2751
- ],
2752
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2753
- },
2754
- {
2755
- end: 535,
2756
- type: 'span',
2757
- uuid: 'ece52aa1-1789-411a-9dde-e691a4208b24',
2758
- start: 529,
2759
- content: [
2760
- {
2761
- 'text-style': 'foreign',
2762
- },
2763
- {
2764
- lang: 'Sa-Ltn',
2765
- },
2766
- ],
2767
- passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2768
- },
2769
- ],
2770
- },
2771
- {
2772
- sort: 350,
2773
- type: 'endnotes',
2774
- uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
2775
- label: 'n.19',
2776
- xmlId: 'UT22084-066-009-39',
2777
- parent: 'UT22084-066-009-end-notes',
2778
- content:
2779
- 'The translation here follows the Degé and IOL Tib J 69 editions, which have sems skyed cig. The Stok Palace Kangyur version reads sems dpa’ cig.',
2780
- work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2781
- annotations: [
2782
- {
2783
- end: 90,
2784
- type: 'span',
2785
- uuid: 'd5dc508d-d3e0-4ca0-a62f-94ae47a58762',
2786
- start: 76,
2787
- content: [
2788
- {
2789
- 'text-style': 'foreign',
2790
- },
2791
- {
2792
- lang: 'Bo-Ltn',
2793
- },
2794
- ],
2795
- passage_uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
2796
- },
2797
- {
2798
- end: 143,
2799
- type: 'span',
2800
- uuid: 'c3d2d6f6-ba32-419e-b089-6e79551a231b',
2801
- start: 130,
2802
- content: [
2803
- {
2804
- 'text-style': 'foreign',
2805
- },
2806
- {
2807
- lang: 'Bo-Ltn',
2808
- },
2809
- ],
2810
- passage_uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
2811
- },
2812
- ],
2813
- },
2814
- ];