@eightyfourthousand/lib-editing 2026.4.0 → 2026.4.1
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.
- package/fixtures/basic/json.d.ts +4 -0
- package/fixtures/basic/json.js +393 -0
- package/fixtures/basic/json.js.map +1 -0
- package/fixtures/toh251/json.d.ts +4 -0
- package/fixtures/toh251/json.js +4898 -0
- package/fixtures/toh251/json.js.map +1 -0
- package/fixtures/toh251/passages.d.ts +4 -0
- package/fixtures/toh251/passages.js +2764 -0
- package/fixtures/toh251/passages.js.map +1 -0
- package/fixtures/types.d.ts +6 -0
- package/fixtures/types.js +4 -0
- package/fixtures/types.js.map +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -0
- package/lib/block.d.ts +3 -0
- package/lib/block.js +175 -0
- package/lib/block.js.map +1 -0
- package/lib/components/editor/BlockEditor.d.ts +7 -0
- package/lib/components/editor/BlockEditor.js +18 -0
- package/lib/components/editor/BlockEditor.js.map +1 -0
- package/lib/components/editor/EditorBackMatterPage.d.ts +1 -0
- package/lib/components/editor/EditorBackMatterPage.js +55 -0
- package/lib/components/editor/EditorBackMatterPage.js.map +1 -0
- package/lib/components/editor/EditorBodyPage.d.ts +1 -0
- package/lib/components/editor/EditorBodyPage.js +47 -0
- package/lib/components/editor/EditorBodyPage.js.map +1 -0
- package/lib/components/editor/EditorHeader.d.ts +1 -0
- package/lib/components/editor/EditorHeader.js +12 -0
- package/lib/components/editor/EditorHeader.js.map +1 -0
- package/lib/components/editor/EditorLayout.d.ts +9 -0
- package/lib/components/editor/EditorLayout.js +30 -0
- package/lib/components/editor/EditorLayout.js.map +1 -0
- package/lib/components/editor/EditorLeftPanelPage.d.ts +1 -0
- package/lib/components/editor/EditorLeftPanelPage.js +24 -0
- package/lib/components/editor/EditorLeftPanelPage.js.map +1 -0
- package/lib/components/editor/EditorProvider.d.ts +31 -0
- package/lib/components/editor/EditorProvider.js +353 -0
- package/lib/components/editor/EditorProvider.js.map +1 -0
- package/lib/components/editor/PaginationProvider.d.ts +27 -0
- package/lib/components/editor/PaginationProvider.js +311 -0
- package/lib/components/editor/PaginationProvider.js.map +1 -0
- package/lib/components/editor/TitlesBuilder.d.ts +5 -0
- package/lib/components/editor/TitlesBuilder.js +25 -0
- package/lib/components/editor/TitlesBuilder.js.map +1 -0
- package/lib/components/editor/TranslationBuilder.d.ts +2 -0
- package/lib/components/editor/TranslationBuilder.js +128 -0
- package/lib/components/editor/TranslationBuilder.js.map +1 -0
- package/lib/components/editor/TranslationEditor.d.ts +6 -0
- package/lib/components/editor/TranslationEditor.js +15 -0
- package/lib/components/editor/TranslationEditor.js.map +1 -0
- package/lib/components/editor/extensions/Abbreviation/Abbreviation.d.ts +16 -0
- package/lib/components/editor/extensions/Abbreviation/Abbreviation.js +106 -0
- package/lib/components/editor/extensions/Abbreviation/Abbreviation.js.map +1 -0
- package/lib/components/editor/extensions/Audio/Audio.d.ts +23 -0
- package/lib/components/editor/extensions/Audio/Audio.js +41 -0
- package/lib/components/editor/extensions/Audio/Audio.js.map +1 -0
- package/lib/components/editor/extensions/Bold.d.ts +1 -0
- package/lib/components/editor/extensions/Bold.js +38 -0
- package/lib/components/editor/extensions/Bold.js.map +1 -0
- package/lib/components/editor/extensions/Document.d.ts +2 -0
- package/lib/components/editor/extensions/Document.js +7 -0
- package/lib/components/editor/extensions/Document.js.map +1 -0
- package/lib/components/editor/extensions/DragHandle/DragHandle.d.ts +25 -0
- package/lib/components/editor/extensions/DragHandle/DragHandle.js +312 -0
- package/lib/components/editor/extensions/DragHandle/DragHandle.js.map +1 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLink.d.ts +6 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLink.js +21 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLink.js.map +1 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.d.ts +7 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.js +76 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.js.map +1 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.d.ts +13 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.js +174 -0
- package/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.js.map +1 -0
- package/lib/components/editor/extensions/EndNoteLink/endnote-utils.d.ts +86 -0
- package/lib/components/editor/extensions/EndNoteLink/endnote-utils.js +307 -0
- package/lib/components/editor/extensions/EndNoteLink/endnote-utils.js.map +1 -0
- package/lib/components/editor/extensions/GlobalConfig.d.ts +23 -0
- package/lib/components/editor/extensions/GlobalConfig.js +23 -0
- package/lib/components/editor/extensions/GlobalConfig.js.map +1 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.d.ts +4 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.js +23 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.js.map +1 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.d.ts +7 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.js +67 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.js.map +1 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.d.ts +13 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.js +109 -0
- package/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.js.map +1 -0
- package/lib/components/editor/extensions/Heading/Heading.d.ts +2 -0
- package/lib/components/editor/extensions/Heading/Heading.js +52 -0
- package/lib/components/editor/extensions/Heading/Heading.js.map +1 -0
- package/lib/components/editor/extensions/HoverInputField.d.ts +7 -0
- package/lib/components/editor/extensions/HoverInputField.js +20 -0
- package/lib/components/editor/extensions/HoverInputField.js.map +1 -0
- package/lib/components/editor/extensions/Image.d.ts +2 -0
- package/lib/components/editor/extensions/Image.js +16 -0
- package/lib/components/editor/extensions/Image.js.map +1 -0
- package/lib/components/editor/extensions/Indent.d.ts +24 -0
- package/lib/components/editor/extensions/Indent.js +66 -0
- package/lib/components/editor/extensions/Indent.js.map +1 -0
- package/lib/components/editor/extensions/InternalLink/InternalLink.d.ts +13 -0
- package/lib/components/editor/extensions/InternalLink/InternalLink.js +141 -0
- package/lib/components/editor/extensions/InternalLink/InternalLink.js.map +1 -0
- package/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.d.ts +8 -0
- package/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.js +66 -0
- package/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.js.map +1 -0
- package/lib/components/editor/extensions/InternalLink/InternalLinkInput.d.ts +5 -0
- package/lib/components/editor/extensions/InternalLink/InternalLinkInput.js +32 -0
- package/lib/components/editor/extensions/InternalLink/InternalLinkInput.js.map +1 -0
- package/lib/components/editor/extensions/InternalLink/index.js +2 -0
- package/lib/components/editor/extensions/InternalLink/index.js.map +1 -0
- package/lib/components/editor/extensions/Italic.d.ts +1 -0
- package/lib/components/editor/extensions/Italic.js +44 -0
- package/lib/components/editor/extensions/Italic.js.map +1 -0
- package/lib/components/editor/extensions/LeadingSpace.d.ts +24 -0
- package/lib/components/editor/extensions/LeadingSpace.js +69 -0
- package/lib/components/editor/extensions/LeadingSpace.js.map +1 -0
- package/lib/components/editor/extensions/Line/LineNode.d.ts +2 -0
- package/lib/components/editor/extensions/Line/LineNode.js +32 -0
- package/lib/components/editor/extensions/Line/LineNode.js.map +1 -0
- package/lib/components/editor/extensions/LineGroup/LineGroupNode.d.ts +19 -0
- package/lib/components/editor/extensions/LineGroup/LineGroupNode.js +86 -0
- package/lib/components/editor/extensions/LineGroup/LineGroupNode.js.map +1 -0
- package/lib/components/editor/extensions/Link/Link.d.ts +1 -0
- package/lib/components/editor/extensions/Link/Link.js +51 -0
- package/lib/components/editor/extensions/Link/Link.js.map +1 -0
- package/lib/components/editor/extensions/Link/LinkHoverContent.d.ts +7 -0
- package/lib/components/editor/extensions/Link/LinkHoverContent.js +59 -0
- package/lib/components/editor/extensions/Link/LinkHoverContent.js.map +1 -0
- package/lib/components/editor/extensions/Link/index.js +2 -0
- package/lib/components/editor/extensions/Link/index.js.map +1 -0
- package/lib/components/editor/extensions/List.d.ts +3 -0
- package/lib/components/editor/extensions/List.js +59 -0
- package/lib/components/editor/extensions/List.js.map +1 -0
- package/lib/components/editor/extensions/Mantra/Mantra.d.ts +15 -0
- package/lib/components/editor/extensions/Mantra/Mantra.js +63 -0
- package/lib/components/editor/extensions/Mantra/Mantra.js.map +1 -0
- package/lib/components/editor/extensions/Mention/Mention.d.ts +22 -0
- package/lib/components/editor/extensions/Mention/Mention.js +142 -0
- package/lib/components/editor/extensions/Mention/Mention.js.map +1 -0
- package/lib/components/editor/extensions/Mention/MentionHoverContent.d.ts +8 -0
- package/lib/components/editor/extensions/Mention/MentionHoverContent.js +85 -0
- package/lib/components/editor/extensions/Mention/MentionHoverContent.js.map +1 -0
- package/lib/components/editor/extensions/NodeWrapper.d.ts +18 -0
- package/lib/components/editor/extensions/NodeWrapper.js +14 -0
- package/lib/components/editor/extensions/NodeWrapper.js.map +1 -0
- package/lib/components/editor/extensions/Paragraph/Paragraph.d.ts +2 -0
- package/lib/components/editor/extensions/Paragraph/Paragraph.js +23 -0
- package/lib/components/editor/extensions/Paragraph/Paragraph.js.map +1 -0
- package/lib/components/editor/extensions/ParagraphIndent.d.ts +24 -0
- package/lib/components/editor/extensions/ParagraphIndent.js +52 -0
- package/lib/components/editor/extensions/ParagraphIndent.js.map +1 -0
- package/lib/components/editor/extensions/Passage/EditLabel.d.ts +4 -0
- package/lib/components/editor/extensions/Passage/EditLabel.js +19 -0
- package/lib/components/editor/extensions/Passage/EditLabel.js.map +1 -0
- package/lib/components/editor/extensions/Passage/EditorOptions.d.ts +3 -0
- package/lib/components/editor/extensions/Passage/EditorOptions.js +8 -0
- package/lib/components/editor/extensions/Passage/EditorOptions.js.map +1 -0
- package/lib/components/editor/extensions/Passage/Passage.d.ts +3 -0
- package/lib/components/editor/extensions/Passage/Passage.js +76 -0
- package/lib/components/editor/extensions/Passage/Passage.js.map +1 -0
- package/lib/components/editor/extensions/Passage/PassageNode.d.ts +10 -0
- package/lib/components/editor/extensions/Passage/PassageNode.js +180 -0
- package/lib/components/editor/extensions/Passage/PassageNode.js.map +1 -0
- package/lib/components/editor/extensions/Passage/ReaderOptions.d.ts +8 -0
- package/lib/components/editor/extensions/Passage/ReaderOptions.js +25 -0
- package/lib/components/editor/extensions/Passage/ReaderOptions.js.map +1 -0
- package/lib/components/editor/extensions/Passage/ShowAnnotations.d.ts +2 -0
- package/lib/components/editor/extensions/Passage/ShowAnnotations.js +31 -0
- package/lib/components/editor/extensions/Passage/ShowAnnotations.js.map +1 -0
- package/lib/components/editor/extensions/Passage/index.js +2 -0
- package/lib/components/editor/extensions/Passage/index.js.map +1 -0
- package/lib/components/editor/extensions/Passage/label.d.ts +22 -0
- package/lib/components/editor/extensions/Passage/label.js +37 -0
- package/lib/components/editor/extensions/Passage/label.js.map +1 -0
- package/lib/components/editor/extensions/Placeholder.d.ts +2 -0
- package/lib/components/editor/extensions/Placeholder.js +9 -0
- package/lib/components/editor/extensions/Placeholder.js.map +1 -0
- package/lib/components/editor/extensions/SlashCommand/SlashCommand.d.ts +32 -0
- package/lib/components/editor/extensions/SlashCommand/SlashCommand.js +32 -0
- package/lib/components/editor/extensions/SlashCommand/SlashCommand.js.map +1 -0
- package/lib/components/editor/extensions/SlashCommand/SuggestionList.d.ts +12 -0
- package/lib/components/editor/extensions/SlashCommand/SuggestionList.js +49 -0
- package/lib/components/editor/extensions/SlashCommand/SuggestionList.js.map +1 -0
- package/lib/components/editor/extensions/SlashCommand/Suggestions.d.ts +13 -0
- package/lib/components/editor/extensions/SlashCommand/Suggestions.js +151 -0
- package/lib/components/editor/extensions/SlashCommand/Suggestions.js.map +1 -0
- package/lib/components/editor/extensions/SmallCaps.d.ts +34 -0
- package/lib/components/editor/extensions/SmallCaps.js +68 -0
- package/lib/components/editor/extensions/SmallCaps.js.map +1 -0
- package/lib/components/editor/extensions/StarterKit.d.ts +4 -0
- package/lib/components/editor/extensions/StarterKit.js +31 -0
- package/lib/components/editor/extensions/StarterKit.js.map +1 -0
- package/lib/components/editor/extensions/Subscript.d.ts +1 -0
- package/lib/components/editor/extensions/Subscript.js +38 -0
- package/lib/components/editor/extensions/Subscript.js.map +1 -0
- package/lib/components/editor/extensions/Superscript.d.ts +1 -0
- package/lib/components/editor/extensions/Superscript.js +38 -0
- package/lib/components/editor/extensions/Superscript.js.map +1 -0
- package/lib/components/editor/extensions/Table.d.ts +1 -0
- package/lib/components/editor/extensions/Table.js +27 -0
- package/lib/components/editor/extensions/Table.js.map +1 -0
- package/lib/components/editor/extensions/TextAlign.d.ts +2 -0
- package/lib/components/editor/extensions/TextAlign.js +5 -0
- package/lib/components/editor/extensions/TextAlign.js.map +1 -0
- package/lib/components/editor/extensions/TitleMetadata.d.ts +2 -0
- package/lib/components/editor/extensions/TitleMetadata.js +40 -0
- package/lib/components/editor/extensions/TitleMetadata.js.map +1 -0
- package/lib/components/editor/extensions/TitleNode.d.ts +8 -0
- package/lib/components/editor/extensions/TitleNode.js +94 -0
- package/lib/components/editor/extensions/TitleNode.js.map +1 -0
- package/lib/components/editor/extensions/TitlesNode.d.ts +7 -0
- package/lib/components/editor/extensions/TitlesNode.js +89 -0
- package/lib/components/editor/extensions/TitlesNode.js.map +1 -0
- package/lib/components/editor/extensions/Trailer.d.ts +16 -0
- package/lib/components/editor/extensions/Trailer.js +35 -0
- package/lib/components/editor/extensions/Trailer.js.map +1 -0
- package/lib/components/editor/extensions/TranslationDocument.d.ts +3 -0
- package/lib/components/editor/extensions/TranslationDocument.js +7 -0
- package/lib/components/editor/extensions/TranslationDocument.js.map +1 -0
- package/lib/components/editor/extensions/TranslationMetadata.d.ts +3 -0
- package/lib/components/editor/extensions/TranslationMetadata.js +56 -0
- package/lib/components/editor/extensions/TranslationMetadata.js.map +1 -0
- package/lib/components/editor/extensions/Underline.d.ts +1 -0
- package/lib/components/editor/extensions/Underline.js +38 -0
- package/lib/components/editor/extensions/Underline.js.map +1 -0
- package/lib/components/editor/hooks/index.js +5 -0
- package/lib/components/editor/hooks/index.js.map +1 -0
- package/lib/components/editor/hooks/useBlockEditor.d.ts +13 -0
- package/lib/components/editor/hooks/useBlockEditor.js +23 -0
- package/lib/components/editor/hooks/useBlockEditor.js.map +1 -0
- package/lib/components/editor/hooks/useDefaultExtensions.d.ts +3 -0
- package/lib/components/editor/hooks/useDefaultExtensions.js +38 -0
- package/lib/components/editor/hooks/useDefaultExtensions.js.map +1 -0
- package/lib/components/editor/hooks/useDirtyStore.d.ts +8 -0
- package/lib/components/editor/hooks/useDirtyStore.js +23 -0
- package/lib/components/editor/hooks/useDirtyStore.js.map +1 -0
- package/lib/components/editor/hooks/useTranslationExtensions.d.ts +6 -0
- package/lib/components/editor/hooks/useTranslationExtensions.js +113 -0
- package/lib/components/editor/hooks/useTranslationExtensions.js.map +1 -0
- package/lib/components/editor/index.js +11 -0
- package/lib/components/editor/index.js.map +1 -0
- package/lib/components/editor/menus/EmptyBubbleMenu.d.ts +4 -0
- package/lib/components/editor/menus/EmptyBubbleMenu.js +24 -0
- package/lib/components/editor/menus/EmptyBubbleMenu.js.map +1 -0
- package/lib/components/editor/menus/MainBubbleMenu.d.ts +4 -0
- package/lib/components/editor/menus/MainBubbleMenu.js +28 -0
- package/lib/components/editor/menus/MainBubbleMenu.js.map +1 -0
- package/lib/components/editor/menus/TranslationBubbleMenu.d.ts +4 -0
- package/lib/components/editor/menus/TranslationBubbleMenu.js +30 -0
- package/lib/components/editor/menus/TranslationBubbleMenu.js.map +1 -0
- package/lib/components/editor/menus/index.js +4 -0
- package/lib/components/editor/menus/index.js.map +1 -0
- package/lib/components/editor/menus/selectors/EndNoteSelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/EndNoteSelector.js +256 -0
- package/lib/components/editor/menus/selectors/EndNoteSelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/GlossarySelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/GlossarySelector.js +26 -0
- package/lib/components/editor/menus/selectors/GlossarySelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/LinkSelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/LinkSelector.js +31 -0
- package/lib/components/editor/menus/selectors/LinkSelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/MantraSelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/MantraSelector.js +63 -0
- package/lib/components/editor/menus/selectors/MantraSelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/NodeSelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/NodeSelector.js +75 -0
- package/lib/components/editor/menus/selectors/NodeSelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/ParagraphButtons.d.ts +4 -0
- package/lib/components/editor/menus/selectors/ParagraphButtons.js +42 -0
- package/lib/components/editor/menus/selectors/ParagraphButtons.js.map +1 -0
- package/lib/components/editor/menus/selectors/SelectorInputField.d.ts +8 -0
- package/lib/components/editor/menus/selectors/SelectorInputField.js +29 -0
- package/lib/components/editor/menus/selectors/SelectorInputField.js.map +1 -0
- package/lib/components/editor/menus/selectors/TextAlignSelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/TextAlignSelector.js +43 -0
- package/lib/components/editor/menus/selectors/TextAlignSelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/TextButtons.d.ts +4 -0
- package/lib/components/editor/menus/selectors/TextButtons.js +56 -0
- package/lib/components/editor/menus/selectors/TextButtons.js.map +1 -0
- package/lib/components/editor/menus/selectors/TranslationNodeSelector.d.ts +4 -0
- package/lib/components/editor/menus/selectors/TranslationNodeSelector.js +75 -0
- package/lib/components/editor/menus/selectors/TranslationNodeSelector.js.map +1 -0
- package/lib/components/editor/menus/selectors/TranslationTextButtons.d.ts +4 -0
- package/lib/components/editor/menus/selectors/TranslationTextButtons.js +75 -0
- package/lib/components/editor/menus/selectors/TranslationTextButtons.js.map +1 -0
- package/lib/components/editor/menus/selectors/index.js +6 -0
- package/lib/components/editor/menus/selectors/index.js.map +1 -0
- package/lib/components/editor/save-filter.d.ts +13 -0
- package/lib/components/editor/save-filter.js +15 -0
- package/lib/components/editor/save-filter.js.map +1 -0
- package/lib/components/editor/util.d.ts +98 -0
- package/lib/components/editor/util.js +186 -0
- package/lib/components/editor/util.js.map +1 -0
- package/lib/components/index.js +4 -0
- package/lib/components/index.js.map +1 -0
- package/lib/components/reader/ReaderBackMatterPage.d.ts +5 -0
- package/lib/components/reader/ReaderBackMatterPage.js +38 -0
- package/lib/components/reader/ReaderBackMatterPage.js.map +1 -0
- package/lib/components/reader/ReaderBackMatterPanel.d.ts +11 -0
- package/lib/components/reader/ReaderBackMatterPanel.js +15 -0
- package/lib/components/reader/ReaderBackMatterPanel.js.map +1 -0
- package/lib/components/reader/ReaderBodyPage.d.ts +5 -0
- package/lib/components/reader/ReaderBodyPage.js +29 -0
- package/lib/components/reader/ReaderBodyPage.js.map +1 -0
- package/lib/components/reader/ReaderBodyPanel.d.ts +8 -0
- package/lib/components/reader/ReaderBodyPanel.js +19 -0
- package/lib/components/reader/ReaderBodyPanel.js.map +1 -0
- package/lib/components/reader/ReaderLayout.d.ts +10 -0
- package/lib/components/reader/ReaderLayout.js +11 -0
- package/lib/components/reader/ReaderLayout.js.map +1 -0
- package/lib/components/reader/ReaderLeftPanel.d.ts +5 -0
- package/lib/components/reader/ReaderLeftPanel.js +7 -0
- package/lib/components/reader/ReaderLeftPanel.js.map +1 -0
- package/lib/components/reader/ReaderLeftPanelPage.d.ts +5 -0
- package/lib/components/reader/ReaderLeftPanelPage.js +20 -0
- package/lib/components/reader/ReaderLeftPanelPage.js.map +1 -0
- package/lib/components/reader/TranslationReader.d.ts +2 -0
- package/lib/components/reader/TranslationReader.js +10 -0
- package/lib/components/reader/TranslationReader.js.map +1 -0
- package/lib/components/reader/index.js +3 -0
- package/lib/components/reader/index.js.map +1 -0
- package/lib/components/reader/ssr.js +4 -0
- package/lib/components/reader/ssr.js.map +1 -0
- package/lib/components/shared/AiSummarizerPage.d.ts +1 -0
- package/lib/components/shared/AiSummarizerPage.js +11 -0
- package/lib/components/shared/AiSummarizerPage.js.map +1 -0
- package/lib/components/shared/BackMatterPanel.d.ts +15 -0
- package/lib/components/shared/BackMatterPanel.js +31 -0
- package/lib/components/shared/BackMatterPanel.js.map +1 -0
- package/lib/components/shared/BodyPanel.d.ts +12 -0
- package/lib/components/shared/BodyPanel.js +81 -0
- package/lib/components/shared/BodyPanel.js.map +1 -0
- package/lib/components/shared/HoverCardProvider.d.ts +23 -0
- package/lib/components/shared/HoverCardProvider.js +261 -0
- package/lib/components/shared/HoverCardProvider.js.map +1 -0
- package/lib/components/shared/Imprint.d.ts +4 -0
- package/lib/components/shared/Imprint.js +11 -0
- package/lib/components/shared/Imprint.js.map +1 -0
- package/lib/components/shared/LabeledElement.d.ts +9 -0
- package/lib/components/shared/LabeledElement.js +41 -0
- package/lib/components/shared/LabeledElement.js.map +1 -0
- package/lib/components/shared/LeftPanel.d.ts +6 -0
- package/lib/components/shared/LeftPanel.js +22 -0
- package/lib/components/shared/LeftPanel.js.map +1 -0
- package/lib/components/shared/NavigationContext.d.ts +25 -0
- package/lib/components/shared/NavigationContext.js +31 -0
- package/lib/components/shared/NavigationContext.js.map +1 -0
- package/lib/components/shared/NavigationProvider.d.ts +7 -0
- package/lib/components/shared/NavigationProvider.js +262 -0
- package/lib/components/shared/NavigationProvider.js.map +1 -0
- package/lib/components/shared/OpenGraphImage.d.ts +13 -0
- package/lib/components/shared/OpenGraphImage.js +47 -0
- package/lib/components/shared/OpenGraphImage.js.map +1 -0
- package/lib/components/shared/PassageSkeleton.d.ts +1 -0
- package/lib/components/shared/PassageSkeleton.js +6 -0
- package/lib/components/shared/PassageSkeleton.js.map +1 -0
- package/lib/components/shared/ReaderSearchButton.d.ts +1 -0
- package/lib/components/shared/ReaderSearchButton.js +72 -0
- package/lib/components/shared/ReaderSearchButton.js.map +1 -0
- package/lib/components/shared/RestrictionWarning.d.ts +13 -0
- package/lib/components/shared/RestrictionWarning.js +61 -0
- package/lib/components/shared/RestrictionWarning.js.map +1 -0
- package/lib/components/shared/SearchReplacePanel.d.ts +9 -0
- package/lib/components/shared/SearchReplacePanel.js +136 -0
- package/lib/components/shared/SearchReplacePanel.js.map +1 -0
- package/lib/components/shared/SourceReader.d.ts +1 -0
- package/lib/components/shared/SourceReader.js +49 -0
- package/lib/components/shared/SourceReader.js.map +1 -0
- package/lib/components/shared/SuggestRevisionForm.d.ts +6 -0
- package/lib/components/shared/SuggestRevisionForm.js +44 -0
- package/lib/components/shared/SuggestRevisionForm.js.map +1 -0
- package/lib/components/shared/TableOfContents.d.ts +13 -0
- package/lib/components/shared/TableOfContents.js +135 -0
- package/lib/components/shared/TableOfContents.js.map +1 -0
- package/lib/components/shared/ThreeColumnRenderer.d.ts +5 -0
- package/lib/components/shared/ThreeColumnRenderer.js +28 -0
- package/lib/components/shared/ThreeColumnRenderer.js.map +1 -0
- package/lib/components/shared/TranslationHeader.d.ts +3 -0
- package/lib/components/shared/TranslationHeader.js +11 -0
- package/lib/components/shared/TranslationHeader.js.map +1 -0
- package/lib/components/shared/TranslationHoverCard.d.ts +7 -0
- package/lib/components/shared/TranslationHoverCard.js +41 -0
- package/lib/components/shared/TranslationHoverCard.js.map +1 -0
- package/lib/components/shared/TranslationSkeleton.d.ts +3 -0
- package/lib/components/shared/TranslationSkeleton.js +7 -0
- package/lib/components/shared/TranslationSkeleton.js.map +1 -0
- package/lib/components/shared/TranslationTable.d.ts +4 -0
- package/lib/components/shared/TranslationTable.js +82 -0
- package/lib/components/shared/TranslationTable.js.map +1 -0
- package/lib/components/shared/bibliography/BibliographyBody.d.ts +5 -0
- package/lib/components/shared/bibliography/BibliographyBody.js +11 -0
- package/lib/components/shared/bibliography/BibliographyBody.js.map +1 -0
- package/lib/components/shared/bibliography/BibliographyList.d.ts +5 -0
- package/lib/components/shared/bibliography/BibliographyList.js +15 -0
- package/lib/components/shared/bibliography/BibliographyList.js.map +1 -0
- package/lib/components/shared/bibliography/index.js +2 -0
- package/lib/components/shared/bibliography/index.js.map +1 -0
- package/lib/components/shared/generate-metadata.d.ts +6 -0
- package/lib/components/shared/generate-metadata.js +32 -0
- package/lib/components/shared/generate-metadata.js.map +1 -0
- package/lib/components/shared/glossary/GlossaryInstanceBody.d.ts +6 -0
- package/lib/components/shared/glossary/GlossaryInstanceBody.js +49 -0
- package/lib/components/shared/glossary/GlossaryInstanceBody.js.map +1 -0
- package/lib/components/shared/glossary/GlossaryPaginationProvider.d.ts +19 -0
- package/lib/components/shared/glossary/GlossaryPaginationProvider.js +182 -0
- package/lib/components/shared/glossary/GlossaryPaginationProvider.js.map +1 -0
- package/lib/components/shared/glossary/GlossarySkeleton.d.ts +5 -0
- package/lib/components/shared/glossary/GlossarySkeleton.js +10 -0
- package/lib/components/shared/glossary/GlossarySkeleton.js.map +1 -0
- package/lib/components/shared/glossary/GlossaryTermList.d.ts +4 -0
- package/lib/components/shared/glossary/GlossaryTermList.js +17 -0
- package/lib/components/shared/glossary/GlossaryTermList.js.map +1 -0
- package/lib/components/shared/glossary/index.js +4 -0
- package/lib/components/shared/glossary/index.js.map +1 -0
- package/lib/components/shared/hooks/useGlossaryInstanceListener.d.ts +4 -0
- package/lib/components/shared/hooks/useGlossaryInstanceListener.js +30 -0
- package/lib/components/shared/hooks/useGlossaryInstanceListener.js.map +1 -0
- package/lib/components/shared/hooks/usePaginationLoadTriggers.d.ts +12 -0
- package/lib/components/shared/hooks/usePaginationLoadTriggers.js +94 -0
- package/lib/components/shared/hooks/usePaginationLoadTriggers.js.map +1 -0
- package/lib/components/shared/hooks/useScrollInTab.d.ts +7 -0
- package/lib/components/shared/hooks/useScrollInTab.js +31 -0
- package/lib/components/shared/hooks/useScrollInTab.js.map +1 -0
- package/lib/components/shared/hooks/useScrollPositionRestore.d.ts +44 -0
- package/lib/components/shared/hooks/useScrollPositionRestore.js +219 -0
- package/lib/components/shared/hooks/useScrollPositionRestore.js.map +1 -0
- package/lib/components/shared/hooks/useTohToggle.d.ts +5 -0
- package/lib/components/shared/hooks/useTohToggle.js +36 -0
- package/lib/components/shared/hooks/useTohToggle.js.map +1 -0
- package/lib/components/shared/index.js +12 -0
- package/lib/components/shared/index.js.map +1 -0
- package/lib/components/shared/ssr.js +3 -0
- package/lib/components/shared/ssr.js.map +1 -0
- package/lib/components/shared/titles/FramedCard.d.ts +7 -0
- package/lib/components/shared/titles/FramedCard.js +21 -0
- package/lib/components/shared/titles/FramedCard.js.map +1 -0
- package/lib/components/shared/titles/LongTitle.d.ts +5 -0
- package/lib/components/shared/titles/LongTitle.js +12 -0
- package/lib/components/shared/titles/LongTitle.js.map +1 -0
- package/lib/components/shared/titles/LongTitles.d.ts +4 -0
- package/lib/components/shared/titles/LongTitles.js +14 -0
- package/lib/components/shared/titles/LongTitles.js.map +1 -0
- package/lib/components/shared/titles/Title.d.ts +20 -0
- package/lib/components/shared/titles/Title.js +39 -0
- package/lib/components/shared/titles/Title.js.map +1 -0
- package/lib/components/shared/titles/TitleDetails.d.ts +4 -0
- package/lib/components/shared/titles/TitleDetails.js +14 -0
- package/lib/components/shared/titles/TitleDetails.js.map +1 -0
- package/lib/components/shared/titles/TitleForm.d.ts +5 -0
- package/lib/components/shared/titles/TitleForm.js +14 -0
- package/lib/components/shared/titles/TitleForm.js.map +1 -0
- package/lib/components/shared/titles/Titles.d.ts +8 -0
- package/lib/components/shared/titles/Titles.js +65 -0
- package/lib/components/shared/titles/Titles.js.map +1 -0
- package/lib/components/shared/titles/TitlesCard.d.ts +12 -0
- package/lib/components/shared/titles/TitlesCard.js +10 -0
- package/lib/components/shared/titles/TitlesCard.js.map +1 -0
- package/lib/components/shared/titles/index.js +9 -0
- package/lib/components/shared/titles/index.js.map +1 -0
- package/lib/components/shared/types.d.ts +30 -0
- package/lib/components/shared/types.js +34 -0
- package/lib/components/shared/types.js.map +1 -0
- package/lib/components/ssr.js +3 -0
- package/lib/components/ssr.js.map +1 -0
- package/lib/exporters/abbreviation.d.ts +3 -0
- package/lib/exporters/abbreviation.js +14 -0
- package/lib/exporters/abbreviation.js.map +1 -0
- package/lib/exporters/annotation.d.ts +5 -0
- package/lib/exporters/annotation.js +158 -0
- package/lib/exporters/annotation.js.map +1 -0
- package/lib/exporters/audio.d.ts +3 -0
- package/lib/exporters/audio.js +19 -0
- package/lib/exporters/audio.js.map +1 -0
- package/lib/exporters/blockquote.d.ts +3 -0
- package/lib/exporters/blockquote.js +16 -0
- package/lib/exporters/blockquote.js.map +1 -0
- package/lib/exporters/code.d.ts +3 -0
- package/lib/exporters/code.js +16 -0
- package/lib/exporters/code.js.map +1 -0
- package/lib/exporters/end-note-link.d.ts +3 -0
- package/lib/exporters/end-note-link.js +23 -0
- package/lib/exporters/end-note-link.js.map +1 -0
- package/lib/exporters/export.d.ts +10 -0
- package/lib/exporters/export.js +2 -0
- package/lib/exporters/export.js.map +1 -0
- package/lib/exporters/glossary-instance.d.ts +3 -0
- package/lib/exporters/glossary-instance.js +20 -0
- package/lib/exporters/glossary-instance.js.map +1 -0
- package/lib/exporters/has-abbreviation.d.ts +3 -0
- package/lib/exporters/has-abbreviation.js +14 -0
- package/lib/exporters/has-abbreviation.js.map +1 -0
- package/lib/exporters/heading.d.ts +3 -0
- package/lib/exporters/heading.js +20 -0
- package/lib/exporters/heading.js.map +1 -0
- package/lib/exporters/image.d.ts +3 -0
- package/lib/exporters/image.js +17 -0
- package/lib/exporters/image.js.map +1 -0
- package/lib/exporters/indent.d.ts +3 -0
- package/lib/exporters/indent.js +11 -0
- package/lib/exporters/indent.js.map +1 -0
- package/lib/exporters/index.js +2 -0
- package/lib/exporters/index.js.map +1 -0
- package/lib/exporters/internal-link.d.ts +3 -0
- package/lib/exporters/internal-link.js +24 -0
- package/lib/exporters/internal-link.js.map +1 -0
- package/lib/exporters/italic.d.ts +3 -0
- package/lib/exporters/italic.js +33 -0
- package/lib/exporters/italic.js.map +1 -0
- package/lib/exporters/leading-space.d.ts +3 -0
- package/lib/exporters/leading-space.js +10 -0
- package/lib/exporters/leading-space.js.map +1 -0
- package/lib/exporters/line-group.d.ts +3 -0
- package/lib/exporters/line-group.js +16 -0
- package/lib/exporters/line-group.js.map +1 -0
- package/lib/exporters/line.d.ts +3 -0
- package/lib/exporters/line.js +16 -0
- package/lib/exporters/line.js.map +1 -0
- package/lib/exporters/link.d.ts +4 -0
- package/lib/exporters/link.js +36 -0
- package/lib/exporters/link.js.map +1 -0
- package/lib/exporters/list-item.d.ts +3 -0
- package/lib/exporters/list-item.js +16 -0
- package/lib/exporters/list-item.js.map +1 -0
- package/lib/exporters/list.d.ts +3 -0
- package/lib/exporters/list.js +22 -0
- package/lib/exporters/list.js.map +1 -0
- package/lib/exporters/mantra.d.ts +3 -0
- package/lib/exporters/mantra.js +17 -0
- package/lib/exporters/mantra.js.map +1 -0
- package/lib/exporters/mention.d.ts +3 -0
- package/lib/exporters/mention.js +11 -0
- package/lib/exporters/mention.js.map +1 -0
- package/lib/exporters/paragraph.d.ts +3 -0
- package/lib/exporters/paragraph.js +22 -0
- package/lib/exporters/paragraph.js.map +1 -0
- package/lib/exporters/quote.d.ts +3 -0
- package/lib/exporters/quote.js +16 -0
- package/lib/exporters/quote.js.map +1 -0
- package/lib/exporters/span.d.ts +3 -0
- package/lib/exporters/span.js +29 -0
- package/lib/exporters/span.js.map +1 -0
- package/lib/exporters/table-body-data.d.ts +3 -0
- package/lib/exporters/table-body-data.js +16 -0
- package/lib/exporters/table-body-data.js.map +1 -0
- package/lib/exporters/table-body-header.d.ts +3 -0
- package/lib/exporters/table-body-header.js +16 -0
- package/lib/exporters/table-body-header.js.map +1 -0
- package/lib/exporters/table-body-row.d.ts +3 -0
- package/lib/exporters/table-body-row.js +16 -0
- package/lib/exporters/table-body-row.js.map +1 -0
- package/lib/exporters/table.d.ts +3 -0
- package/lib/exporters/table.js +16 -0
- package/lib/exporters/table.js.map +1 -0
- package/lib/exporters/trailer.d.ts +3 -0
- package/lib/exporters/trailer.js +16 -0
- package/lib/exporters/trailer.js.map +1 -0
- package/lib/exporters/util.d.ts +3 -0
- package/lib/exporters/util.js +49 -0
- package/lib/exporters/util.js.map +1 -0
- package/lib/passage.d.ts +10 -0
- package/lib/passage.js +153 -0
- package/lib/passage.js.map +1 -0
- package/lib/titles.d.ts +3 -0
- package/lib/titles.js +70 -0
- package/lib/titles.js.map +1 -0
- package/lib/transformers/abbreviation.d.ts +2 -0
- package/lib/transformers/abbreviation.js +17 -0
- package/lib/transformers/abbreviation.js.map +1 -0
- package/lib/transformers/annotate.d.ts +8 -0
- package/lib/transformers/annotate.js +98 -0
- package/lib/transformers/annotate.js.map +1 -0
- package/lib/transformers/audio.d.ts +2 -0
- package/lib/transformers/audio.js +17 -0
- package/lib/transformers/audio.js.map +1 -0
- package/lib/transformers/blockquote.d.ts +2 -0
- package/lib/transformers/blockquote.js +27 -0
- package/lib/transformers/blockquote.js.map +1 -0
- package/lib/transformers/code.d.ts +2 -0
- package/lib/transformers/code.js +13 -0
- package/lib/transformers/code.js.map +1 -0
- package/lib/transformers/deprecated.d.ts +2 -0
- package/lib/transformers/deprecated.js +4 -0
- package/lib/transformers/deprecated.js.map +1 -0
- package/lib/transformers/end-note-link.d.ts +2 -0
- package/lib/transformers/end-note-link.js +54 -0
- package/lib/transformers/end-note-link.js.map +1 -0
- package/lib/transformers/glossary-instance.d.ts +2 -0
- package/lib/transformers/glossary-instance.js +28 -0
- package/lib/transformers/glossary-instance.js.map +1 -0
- package/lib/transformers/has-abbreviation.d.ts +2 -0
- package/lib/transformers/has-abbreviation.js +22 -0
- package/lib/transformers/has-abbreviation.js.map +1 -0
- package/lib/transformers/heading.d.ts +2 -0
- package/lib/transformers/heading.js +19 -0
- package/lib/transformers/heading.js.map +1 -0
- package/lib/transformers/image.d.ts +2 -0
- package/lib/transformers/image.js +16 -0
- package/lib/transformers/image.js.map +1 -0
- package/lib/transformers/indent.d.ts +2 -0
- package/lib/transformers/indent.js +8 -0
- package/lib/transformers/indent.js.map +1 -0
- package/lib/transformers/index.js +34 -0
- package/lib/transformers/index.js.map +1 -0
- package/lib/transformers/inline-title.d.ts +2 -0
- package/lib/transformers/inline-title.js +21 -0
- package/lib/transformers/inline-title.js.map +1 -0
- package/lib/transformers/internal-link.d.ts +2 -0
- package/lib/transformers/internal-link.js +37 -0
- package/lib/transformers/internal-link.js.map +1 -0
- package/lib/transformers/italic.d.ts +2 -0
- package/lib/transformers/italic.js +13 -0
- package/lib/transformers/italic.js.map +1 -0
- package/lib/transformers/leading-space.d.ts +2 -0
- package/lib/transformers/leading-space.js +8 -0
- package/lib/transformers/leading-space.js.map +1 -0
- package/lib/transformers/line-group.d.ts +2 -0
- package/lib/transformers/line-group.js +24 -0
- package/lib/transformers/line-group.js.map +1 -0
- package/lib/transformers/line.d.ts +2 -0
- package/lib/transformers/line.js +15 -0
- package/lib/transformers/line.js.map +1 -0
- package/lib/transformers/link.d.ts +2 -0
- package/lib/transformers/link.js +16 -0
- package/lib/transformers/link.js.map +1 -0
- package/lib/transformers/list-item.d.ts +2 -0
- package/lib/transformers/list-item.js +24 -0
- package/lib/transformers/list-item.js.map +1 -0
- package/lib/transformers/list.d.ts +2 -0
- package/lib/transformers/list.js +27 -0
- package/lib/transformers/list.js.map +1 -0
- package/lib/transformers/mantra.d.ts +2 -0
- package/lib/transformers/mantra.js +16 -0
- package/lib/transformers/mantra.js.map +1 -0
- package/lib/transformers/mention.d.ts +2 -0
- package/lib/transformers/mention.js +45 -0
- package/lib/transformers/mention.js.map +1 -0
- package/lib/transformers/paragraph.d.ts +2 -0
- package/lib/transformers/paragraph.js +13 -0
- package/lib/transformers/paragraph.js.map +1 -0
- package/lib/transformers/quote.d.ts +1 -0
- package/lib/transformers/quote.js +3 -0
- package/lib/transformers/quote.js.map +1 -0
- package/lib/transformers/quoted.d.ts +1 -0
- package/lib/transformers/quoted.js +3 -0
- package/lib/transformers/quoted.js.map +1 -0
- package/lib/transformers/recurse.d.ts +13 -0
- package/lib/transformers/recurse.js +54 -0
- package/lib/transformers/recurse.js.map +1 -0
- package/lib/transformers/reference.d.ts +1 -0
- package/lib/transformers/reference.js +3 -0
- package/lib/transformers/reference.js.map +1 -0
- package/lib/transformers/span.d.ts +2 -0
- package/lib/transformers/span.js +54 -0
- package/lib/transformers/span.js.map +1 -0
- package/lib/transformers/split-at.d.ts +5 -0
- package/lib/transformers/split-at.js +41 -0
- package/lib/transformers/split-at.js.map +1 -0
- package/lib/transformers/split-block.d.ts +2 -0
- package/lib/transformers/split-block.js +55 -0
- package/lib/transformers/split-block.js.map +1 -0
- package/lib/transformers/split-content.d.ts +2 -0
- package/lib/transformers/split-content.js +44 -0
- package/lib/transformers/split-content.js.map +1 -0
- package/lib/transformers/split-insert.d.ts +5 -0
- package/lib/transformers/split-insert.js +54 -0
- package/lib/transformers/split-insert.js.map +1 -0
- package/lib/transformers/split-marks.d.ts +19 -0
- package/lib/transformers/split-marks.js +15 -0
- package/lib/transformers/split-marks.js.map +1 -0
- package/lib/transformers/split-node.d.ts +14 -0
- package/lib/transformers/split-node.js +81 -0
- package/lib/transformers/split-node.js.map +1 -0
- package/lib/transformers/table-body-data.d.ts +2 -0
- package/lib/transformers/table-body-data.js +16 -0
- package/lib/transformers/table-body-data.js.map +1 -0
- package/lib/transformers/table-body-header.d.ts +2 -0
- package/lib/transformers/table-body-header.js +16 -0
- package/lib/transformers/table-body-header.js.map +1 -0
- package/lib/transformers/table-body-row.d.ts +2 -0
- package/lib/transformers/table-body-row.js +16 -0
- package/lib/transformers/table-body-row.js.map +1 -0
- package/lib/transformers/table.d.ts +2 -0
- package/lib/transformers/table.js +16 -0
- package/lib/transformers/table.js.map +1 -0
- package/lib/transformers/trailer.d.ts +2 -0
- package/lib/transformers/trailer.js +13 -0
- package/lib/transformers/trailer.js.map +1 -0
- package/lib/transformers/transformer.d.ts +15 -0
- package/lib/transformers/transformer.js +4 -0
- package/lib/transformers/transformer.js.map +1 -0
- package/lib/transformers/unknown.d.ts +2 -0
- package/lib/transformers/unknown.js +5 -0
- package/lib/transformers/unknown.js.map +1 -0
- package/lib/transformers/util.d.ts +3 -0
- package/lib/transformers/util.js +17 -0
- package/lib/transformers/util.js.map +1 -0
- package/lib/types.d.ts +2 -0
- package/lib/types.js +9 -0
- package/lib/types.js.map +1 -0
- package/package.json +54 -8
- package/ssr.js +2 -0
- package/ssr.js.map +1 -0
- package/.babelrc +0 -12
- package/.eslintrc.json +0 -18
- package/README.md +0 -9
- package/jest.config.ts +0 -10
- package/postcss.config.mjs +0 -9
- package/project.json +0 -29
- package/src/fixtures/basic/json.ts +0 -396
- package/src/fixtures/toh251/json.ts +0 -4913
- package/src/fixtures/toh251/passages.ts +0 -2814
- package/src/fixtures/types.ts +0 -8
- package/src/lib/block.ts +0 -226
- package/src/lib/components/editor/BlockEditor.tsx +0 -38
- package/src/lib/components/editor/EditorBackMatterPage.tsx +0 -97
- package/src/lib/components/editor/EditorBodyPage.tsx +0 -87
- package/src/lib/components/editor/EditorHeader.tsx +0 -22
- package/src/lib/components/editor/EditorLayout.tsx +0 -62
- package/src/lib/components/editor/EditorLeftPanelPage.tsx +0 -27
- package/src/lib/components/editor/EditorProvider.tsx +0 -475
- package/src/lib/components/editor/PaginationProvider.tsx +0 -457
- package/src/lib/components/editor/TitlesBuilder.tsx +0 -40
- package/src/lib/components/editor/TranslationBuilder.tsx +0 -171
- package/src/lib/components/editor/TranslationEditor.tsx +0 -32
- package/src/lib/components/editor/extensions/Abbreviation/Abbreviation.ts +0 -133
- package/src/lib/components/editor/extensions/Audio/Audio.ts +0 -69
- package/src/lib/components/editor/extensions/Bold.ts +0 -43
- package/src/lib/components/editor/extensions/Document.ts +0 -8
- package/src/lib/components/editor/extensions/DragHandle/DragHandle.ts +0 -429
- package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLink.tsx +0 -39
- package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.tsx +0 -139
- package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.ts +0 -236
- package/src/lib/components/editor/extensions/EndNoteLink/endnote-utils.ts +0 -412
- package/src/lib/components/editor/extensions/GlobalConfig.ts +0 -52
- package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.tsx +0 -54
- package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.tsx +0 -129
- package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.ts +0 -148
- package/src/lib/components/editor/extensions/Heading/Heading.ts +0 -72
- package/src/lib/components/editor/extensions/HoverInputField.tsx +0 -54
- package/src/lib/components/editor/extensions/Image.ts +0 -18
- package/src/lib/components/editor/extensions/Indent.ts +0 -103
- package/src/lib/components/editor/extensions/InternalLink/InternalLink.ts +0 -176
- package/src/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.tsx +0 -137
- package/src/lib/components/editor/extensions/InternalLink/InternalLinkInput.tsx +0 -71
- package/src/lib/components/editor/extensions/Italic.ts +0 -50
- package/src/lib/components/editor/extensions/LeadingSpace.ts +0 -106
- package/src/lib/components/editor/extensions/Line/LineNode.ts +0 -41
- package/src/lib/components/editor/extensions/LineGroup/LineGroupNode.ts +0 -124
- package/src/lib/components/editor/extensions/Link/Link.ts +0 -65
- package/src/lib/components/editor/extensions/Link/LinkHoverContent.tsx +0 -124
- package/src/lib/components/editor/extensions/List.ts +0 -74
- package/src/lib/components/editor/extensions/Mantra/Mantra.ts +0 -88
- package/src/lib/components/editor/extensions/Mention/Mention.ts +0 -187
- package/src/lib/components/editor/extensions/Mention/MentionHoverContent.tsx +0 -158
- package/src/lib/components/editor/extensions/NodeWrapper.tsx +0 -57
- package/src/lib/components/editor/extensions/Paragraph/Paragraph.ts +0 -25
- package/src/lib/components/editor/extensions/ParagraphIndent.ts +0 -87
- package/src/lib/components/editor/extensions/Passage/EditLabel.tsx +0 -57
- package/src/lib/components/editor/extensions/Passage/EditorOptions.tsx +0 -29
- package/src/lib/components/editor/extensions/Passage/Passage.tsx +0 -238
- package/src/lib/components/editor/extensions/Passage/PassageNode.ts +0 -223
- package/src/lib/components/editor/extensions/Passage/ReaderOptions.tsx +0 -55
- package/src/lib/components/editor/extensions/Passage/ShowAnnotations.tsx +0 -92
- package/src/lib/components/editor/extensions/Passage/label.spec.ts +0 -118
- package/src/lib/components/editor/extensions/Passage/label.ts +0 -39
- package/src/lib/components/editor/extensions/Placeholder.ts +0 -9
- package/src/lib/components/editor/extensions/SlashCommand/SlashCommand.ts +0 -65
- package/src/lib/components/editor/extensions/SlashCommand/SuggestionList.tsx +0 -109
- package/src/lib/components/editor/extensions/SlashCommand/Suggestions.ts +0 -185
- package/src/lib/components/editor/extensions/SmallCaps.ts +0 -110
- package/src/lib/components/editor/extensions/StarterKit.ts +0 -36
- package/src/lib/components/editor/extensions/Subscript.ts +0 -43
- package/src/lib/components/editor/extensions/Superscript.ts +0 -43
- package/src/lib/components/editor/extensions/Table.ts +0 -32
- package/src/lib/components/editor/extensions/TextAlign.ts +0 -5
- package/src/lib/components/editor/extensions/TitleMetadata.ts +0 -40
- package/src/lib/components/editor/extensions/TitleNode.ts +0 -133
- package/src/lib/components/editor/extensions/TitlesNode.ts +0 -102
- package/src/lib/components/editor/extensions/Trailer.ts +0 -57
- package/src/lib/components/editor/extensions/TranslationDocument.ts +0 -7
- package/src/lib/components/editor/extensions/TranslationMetadata.ts +0 -58
- package/src/lib/components/editor/extensions/Underline.ts +0 -43
- package/src/lib/components/editor/hooks/useBlockEditor.ts +0 -53
- package/src/lib/components/editor/hooks/useDefaultExtensions.ts +0 -39
- package/src/lib/components/editor/hooks/useDirtyStore.ts +0 -33
- package/src/lib/components/editor/hooks/useTranslationExtensions.ts +0 -148
- package/src/lib/components/editor/menus/EmptyBubbleMenu.tsx +0 -42
- package/src/lib/components/editor/menus/MainBubbleMenu.tsx +0 -51
- package/src/lib/components/editor/menus/TranslationBubbleMenu.tsx +0 -57
- package/src/lib/components/editor/menus/selectors/EndNoteSelector.tsx +0 -388
- package/src/lib/components/editor/menus/selectors/GlossarySelector.tsx +0 -63
- package/src/lib/components/editor/menus/selectors/LinkSelector.tsx +0 -68
- package/src/lib/components/editor/menus/selectors/MantraSelector.tsx +0 -119
- package/src/lib/components/editor/menus/selectors/NodeSelector.tsx +0 -144
- package/src/lib/components/editor/menus/selectors/ParagraphButtons.tsx +0 -68
- package/src/lib/components/editor/menus/selectors/SelectorInputField.tsx +0 -68
- package/src/lib/components/editor/menus/selectors/TextAlignSelector.tsx +0 -89
- package/src/lib/components/editor/menus/selectors/TextButtons.tsx +0 -89
- package/src/lib/components/editor/menus/selectors/TranslationNodeSelector.tsx +0 -143
- package/src/lib/components/editor/menus/selectors/TranslationTextButtons.tsx +0 -125
- package/src/lib/components/editor/save-filter.spec.ts +0 -94
- package/src/lib/components/editor/save-filter.ts +0 -27
- package/src/lib/components/editor/util.ts +0 -304
- package/src/lib/components/reader/ReaderBackMatterPage.tsx +0 -63
- package/src/lib/components/reader/ReaderBackMatterPanel.tsx +0 -56
- package/src/lib/components/reader/ReaderBodyPage.tsx +0 -46
- package/src/lib/components/reader/ReaderBodyPanel.tsx +0 -68
- package/src/lib/components/reader/ReaderLayout.tsx +0 -39
- package/src/lib/components/reader/ReaderLeftPanel.tsx +0 -8
- package/src/lib/components/reader/ReaderLeftPanelPage.tsx +0 -31
- package/src/lib/components/reader/TranslationReader.tsx +0 -28
- package/src/lib/components/shared/AiSummarizerPage.tsx +0 -12
- package/src/lib/components/shared/BackMatterPanel.tsx +0 -150
- package/src/lib/components/shared/BodyPanel.tsx +0 -214
- package/src/lib/components/shared/HoverCardProvider.tsx +0 -407
- package/src/lib/components/shared/Imprint.tsx +0 -24
- package/src/lib/components/shared/LabeledElement.tsx +0 -133
- package/src/lib/components/shared/LeftPanel.tsx +0 -65
- package/src/lib/components/shared/NavigationContext.ts +0 -64
- package/src/lib/components/shared/NavigationProvider.tsx +0 -400
- package/src/lib/components/shared/OpenGraphImage.tsx +0 -75
- package/src/lib/components/shared/PassageSkeleton.tsx +0 -10
- package/src/lib/components/shared/ReaderSearchButton.tsx +0 -110
- package/src/lib/components/shared/RestrictionWarning.tsx +0 -177
- package/src/lib/components/shared/SearchReplacePanel.tsx +0 -259
- package/src/lib/components/shared/SourceReader.tsx +0 -92
- package/src/lib/components/shared/SuggestRevisionForm.tsx +0 -99
- package/src/lib/components/shared/TableOfContents.tsx +0 -293
- package/src/lib/components/shared/ThreeColumnRenderer.tsx +0 -61
- package/src/lib/components/shared/TranslationHeader.tsx +0 -25
- package/src/lib/components/shared/TranslationHoverCard.tsx +0 -84
- package/src/lib/components/shared/TranslationSkeleton.tsx +0 -16
- package/src/lib/components/shared/TranslationTable.tsx +0 -155
- package/src/lib/components/shared/bibliography/BibliographyBody.tsx +0 -28
- package/src/lib/components/shared/bibliography/BibliographyList.tsx +0 -63
- package/src/lib/components/shared/generate-metadata.ts +0 -44
- package/src/lib/components/shared/glossary/GlossaryInstanceBody.tsx +0 -154
- package/src/lib/components/shared/glossary/GlossaryPaginationProvider.tsx +0 -278
- package/src/lib/components/shared/glossary/GlossarySkeleton.tsx +0 -19
- package/src/lib/components/shared/glossary/GlossaryTermList.tsx +0 -57
- package/src/lib/components/shared/hooks/useGlossaryInstanceListener.tsx +0 -42
- package/src/lib/components/shared/hooks/usePaginationLoadTriggers.spec.tsx +0 -158
- package/src/lib/components/shared/hooks/usePaginationLoadTriggers.ts +0 -129
- package/src/lib/components/shared/hooks/useScrollInTab.tsx +0 -43
- package/src/lib/components/shared/hooks/useScrollPositionRestore.ts +0 -274
- package/src/lib/components/shared/hooks/useTohToggle.tsx +0 -52
- package/src/lib/components/shared/titles/FramedCard.tsx +0 -132
- package/src/lib/components/shared/titles/LongTitle.tsx +0 -20
- package/src/lib/components/shared/titles/LongTitles.tsx +0 -28
- package/src/lib/components/shared/titles/Title.tsx +0 -54
- package/src/lib/components/shared/titles/TitleDetails.tsx +0 -47
- package/src/lib/components/shared/titles/TitleForm.tsx +0 -37
- package/src/lib/components/shared/titles/Titles.tsx +0 -125
- package/src/lib/components/shared/titles/TitlesCard.tsx +0 -113
- package/src/lib/components/shared/types.ts +0 -79
- package/src/lib/exporters/abbreviation.spec.ts +0 -31
- package/src/lib/exporters/abbreviation.ts +0 -22
- package/src/lib/exporters/annotation.ts +0 -193
- package/src/lib/exporters/audio.spec.ts +0 -77
- package/src/lib/exporters/audio.ts +0 -27
- package/src/lib/exporters/blockquote.spec.ts +0 -48
- package/src/lib/exporters/blockquote.ts +0 -24
- package/src/lib/exporters/code.spec.ts +0 -93
- package/src/lib/exporters/code.ts +0 -26
- package/src/lib/exporters/end-note-link.spec.ts +0 -104
- package/src/lib/exporters/end-note-link.ts +0 -35
- package/src/lib/exporters/export.ts +0 -12
- package/src/lib/exporters/glossary-instance.spec.ts +0 -85
- package/src/lib/exporters/glossary-instance.ts +0 -31
- package/src/lib/exporters/has-abbreviation.spec.ts +0 -31
- package/src/lib/exporters/has-abbreviation.ts +0 -21
- package/src/lib/exporters/heading.spec.ts +0 -80
- package/src/lib/exporters/heading.ts +0 -28
- package/src/lib/exporters/image.spec.ts +0 -48
- package/src/lib/exporters/image.ts +0 -25
- package/src/lib/exporters/indent.spec.ts +0 -58
- package/src/lib/exporters/indent.ts +0 -18
- package/src/lib/exporters/internal-link.spec.ts +0 -90
- package/src/lib/exporters/internal-link.ts +0 -35
- package/src/lib/exporters/italic.spec.ts +0 -84
- package/src/lib/exporters/italic.ts +0 -55
- package/src/lib/exporters/leading-space.spec.ts +0 -28
- package/src/lib/exporters/leading-space.ts +0 -16
- package/src/lib/exporters/line-group.spec.ts +0 -48
- package/src/lib/exporters/line-group.ts +0 -24
- package/src/lib/exporters/line.spec.ts +0 -48
- package/src/lib/exporters/line.ts +0 -24
- package/src/lib/exporters/link.spec.ts +0 -123
- package/src/lib/exporters/link.ts +0 -67
- package/src/lib/exporters/list-item.spec.ts +0 -48
- package/src/lib/exporters/list-item.ts +0 -24
- package/src/lib/exporters/list.spec.ts +0 -82
- package/src/lib/exporters/list.ts +0 -31
- package/src/lib/exporters/mantra.spec.ts +0 -51
- package/src/lib/exporters/mantra.ts +0 -25
- package/src/lib/exporters/mention.ts +0 -41
- package/src/lib/exporters/paragraph.spec.ts +0 -173
- package/src/lib/exporters/paragraph.ts +0 -32
- package/src/lib/exporters/quote.spec.ts +0 -56
- package/src/lib/exporters/quote.ts +0 -25
- package/src/lib/exporters/span.spec.ts +0 -118
- package/src/lib/exporters/span.ts +0 -44
- package/src/lib/exporters/table-body-data.spec.ts +0 -48
- package/src/lib/exporters/table-body-data.ts +0 -24
- package/src/lib/exporters/table-body-header.spec.ts +0 -48
- package/src/lib/exporters/table-body-header.ts +0 -24
- package/src/lib/exporters/table-body-row.spec.ts +0 -48
- package/src/lib/exporters/table-body-row.ts +0 -24
- package/src/lib/exporters/table.spec.ts +0 -48
- package/src/lib/exporters/table.ts +0 -24
- package/src/lib/exporters/trailer.spec.ts +0 -48
- package/src/lib/exporters/trailer.ts +0 -24
- package/src/lib/exporters/util.ts +0 -62
- package/src/lib/passage.ts +0 -182
- package/src/lib/titles.ts +0 -80
- package/src/lib/transformers/abbreviation.spec.ts +0 -87
- package/src/lib/transformers/abbreviation.ts +0 -30
- package/src/lib/transformers/annotate.ts +0 -146
- package/src/lib/transformers/audio.spec.ts +0 -55
- package/src/lib/transformers/audio.ts +0 -29
- package/src/lib/transformers/blockquote.spec.ts +0 -48
- package/src/lib/transformers/blockquote.ts +0 -41
- package/src/lib/transformers/code.spec.ts +0 -52
- package/src/lib/transformers/code.ts +0 -22
- package/src/lib/transformers/deprecated.ts +0 -7
- package/src/lib/transformers/end-note-link.spec.ts +0 -56
- package/src/lib/transformers/end-note-link.ts +0 -76
- package/src/lib/transformers/glossary-instance.spec.ts +0 -55
- package/src/lib/transformers/glossary-instance.ts +0 -40
- package/src/lib/transformers/has-abbreviation.spec.ts +0 -50
- package/src/lib/transformers/has-abbreviation.ts +0 -35
- package/src/lib/transformers/heading.spec.ts +0 -62
- package/src/lib/transformers/heading.ts +0 -30
- package/src/lib/transformers/image.spec.ts +0 -51
- package/src/lib/transformers/image.ts +0 -28
- package/src/lib/transformers/indent.spec.ts +0 -53
- package/src/lib/transformers/indent.ts +0 -17
- package/src/lib/transformers/inline-title.spec.ts +0 -59
- package/src/lib/transformers/inline-title.ts +0 -34
- package/src/lib/transformers/internal-link.spec.ts +0 -67
- package/src/lib/transformers/internal-link.ts +0 -65
- package/src/lib/transformers/italic.ts +0 -22
- package/src/lib/transformers/leading-space.spec.ts +0 -55
- package/src/lib/transformers/leading-space.ts +0 -17
- package/src/lib/transformers/line-group.spec.ts +0 -48
- package/src/lib/transformers/line-group.ts +0 -37
- package/src/lib/transformers/line.spec.ts +0 -54
- package/src/lib/transformers/line.ts +0 -27
- package/src/lib/transformers/link.spec.ts +0 -61
- package/src/lib/transformers/link.ts +0 -27
- package/src/lib/transformers/list-item.spec.ts +0 -48
- package/src/lib/transformers/list-item.ts +0 -37
- package/src/lib/transformers/list.spec.ts +0 -58
- package/src/lib/transformers/list.ts +0 -42
- package/src/lib/transformers/mantra.spec.ts +0 -58
- package/src/lib/transformers/mantra.ts +0 -28
- package/src/lib/transformers/mention.ts +0 -70
- package/src/lib/transformers/paragraph.spec.ts +0 -46
- package/src/lib/transformers/paragraph.ts +0 -26
- package/src/lib/transformers/quote.spec.ts +0 -42
- package/src/lib/transformers/quote.ts +0 -3
- package/src/lib/transformers/quoted.ts +0 -3
- package/src/lib/transformers/recurse.ts +0 -76
- package/src/lib/transformers/reference.ts +0 -3
- package/src/lib/transformers/span.spec.ts +0 -68
- package/src/lib/transformers/span.ts +0 -78
- package/src/lib/transformers/split-at.ts +0 -58
- package/src/lib/transformers/split-block.ts +0 -110
- package/src/lib/transformers/split-content.ts +0 -67
- package/src/lib/transformers/split-insert.ts +0 -76
- package/src/lib/transformers/split-marks.ts +0 -42
- package/src/lib/transformers/split-node.ts +0 -138
- package/src/lib/transformers/table-body-data.spec.ts +0 -44
- package/src/lib/transformers/table-body-data.ts +0 -29
- package/src/lib/transformers/table-body-header.spec.ts +0 -44
- package/src/lib/transformers/table-body-header.ts +0 -29
- package/src/lib/transformers/table-body-row.spec.ts +0 -44
- package/src/lib/transformers/table-body-row.ts +0 -29
- package/src/lib/transformers/table.spec.ts +0 -47
- package/src/lib/transformers/table.ts +0 -29
- package/src/lib/transformers/trailer.spec.ts +0 -43
- package/src/lib/transformers/trailer.ts +0 -26
- package/src/lib/transformers/transformer.ts +0 -25
- package/src/lib/transformers/unknown.ts +0 -8
- package/src/lib/transformers/util.ts +0 -20
- package/src/lib/types.ts +0 -10
- package/tsconfig.json +0 -20
- package/tsconfig.lib.json +0 -29
- package/tsconfig.spec.json +0 -22
- /package/{src/index.ts → index.d.ts} +0 -0
- /package/{src/lib/components/editor/extensions/InternalLink/index.ts → lib/components/editor/extensions/InternalLink/index.d.ts} +0 -0
- /package/{src/lib/components/editor/extensions/Link/index.ts → lib/components/editor/extensions/Link/index.d.ts} +0 -0
- /package/{src/lib/components/editor/extensions/Passage/index.ts → lib/components/editor/extensions/Passage/index.d.ts} +0 -0
- /package/{src/lib/components/editor/hooks/index.ts → lib/components/editor/hooks/index.d.ts} +0 -0
- /package/{src/lib/components/editor/index.ts → lib/components/editor/index.d.ts} +0 -0
- /package/{src/lib/components/editor/menus/index.ts → lib/components/editor/menus/index.d.ts} +0 -0
- /package/{src/lib/components/editor/menus/selectors/index.ts → lib/components/editor/menus/selectors/index.d.ts} +0 -0
- /package/{src/lib/components/index.ts → lib/components/index.d.ts} +0 -0
- /package/{src/lib/components/reader/index.ts → lib/components/reader/index.d.ts} +0 -0
- /package/{src/lib/components/reader/ssr.ts → lib/components/reader/ssr.d.ts} +0 -0
- /package/{src/lib/components/shared/bibliography/index.ts → lib/components/shared/bibliography/index.d.ts} +0 -0
- /package/{src/lib/components/shared/glossary/index.ts → lib/components/shared/glossary/index.d.ts} +0 -0
- /package/{src/lib/components/shared/index.ts → lib/components/shared/index.d.ts} +0 -0
- /package/{src/lib/components/shared/ssr.ts → lib/components/shared/ssr.d.ts} +0 -0
- /package/{src/lib/components/shared/titles/index.ts → lib/components/shared/titles/index.d.ts} +0 -0
- /package/{src/lib/components/ssr.ts → lib/components/ssr.d.ts} +0 -0
- /package/{src/lib/exporters/index.ts → lib/exporters/index.d.ts} +0 -0
- /package/{src/lib/transformers/index.ts → lib/transformers/index.d.ts} +0 -0
- /package/{src/ssr.ts → ssr.d.ts} +0 -0
|
@@ -0,0 +1,4898 @@
|
|
|
1
|
+
export const type = 'translation';
|
|
2
|
+
export const content = [
|
|
3
|
+
{
|
|
4
|
+
type: 'passage',
|
|
5
|
+
attrs: {
|
|
6
|
+
uuid: '1bf5e88d-b25d-435d-8b8d-ccaa305efef4',
|
|
7
|
+
sort: 2,
|
|
8
|
+
type: 'summaryHeader',
|
|
9
|
+
label: 's.',
|
|
10
|
+
alignments: {},
|
|
11
|
+
},
|
|
12
|
+
content: [
|
|
13
|
+
{
|
|
14
|
+
type: 'heading',
|
|
15
|
+
attrs: {
|
|
16
|
+
level: 2,
|
|
17
|
+
start: 0,
|
|
18
|
+
end: 7,
|
|
19
|
+
uuid: 'ca3f2d68-7689-4d37-afe2-373d437fbb36',
|
|
20
|
+
class: 'section-title',
|
|
21
|
+
},
|
|
22
|
+
content: [
|
|
23
|
+
{
|
|
24
|
+
type: 'text',
|
|
25
|
+
text: 'Summary',
|
|
26
|
+
attrs: {
|
|
27
|
+
start: 0,
|
|
28
|
+
end: 7,
|
|
29
|
+
},
|
|
30
|
+
},
|
|
31
|
+
],
|
|
32
|
+
},
|
|
33
|
+
],
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
type: 'passage',
|
|
37
|
+
attrs: {
|
|
38
|
+
uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
|
|
39
|
+
sort: 4,
|
|
40
|
+
type: 'summary',
|
|
41
|
+
label: 's.1',
|
|
42
|
+
alignments: {},
|
|
43
|
+
},
|
|
44
|
+
content: [
|
|
45
|
+
{
|
|
46
|
+
type: 'paragraph',
|
|
47
|
+
attrs: {
|
|
48
|
+
start: 0,
|
|
49
|
+
end: 517,
|
|
50
|
+
uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
|
|
51
|
+
},
|
|
52
|
+
content: [
|
|
53
|
+
{
|
|
54
|
+
type: 'text',
|
|
55
|
+
text: 'While residing in the ',
|
|
56
|
+
attrs: {
|
|
57
|
+
start: 0,
|
|
58
|
+
end: 22,
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
type: 'text',
|
|
63
|
+
text: 'Jeta’s Grove',
|
|
64
|
+
attrs: {
|
|
65
|
+
start: 22,
|
|
66
|
+
end: 34,
|
|
67
|
+
},
|
|
68
|
+
marks: [
|
|
69
|
+
{
|
|
70
|
+
type: 'glossaryInstance',
|
|
71
|
+
attrs: {
|
|
72
|
+
glossary: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
|
|
73
|
+
uuid: 'c84f3056-99ca-403b-baa7-d365ab7e41c2',
|
|
74
|
+
},
|
|
75
|
+
},
|
|
76
|
+
],
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
type: 'text',
|
|
80
|
+
text: ' in ',
|
|
81
|
+
attrs: {
|
|
82
|
+
start: 34,
|
|
83
|
+
end: 38,
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
type: 'text',
|
|
88
|
+
text: 'Śrāvastī',
|
|
89
|
+
attrs: {
|
|
90
|
+
start: 38,
|
|
91
|
+
end: 46,
|
|
92
|
+
},
|
|
93
|
+
marks: [
|
|
94
|
+
{
|
|
95
|
+
type: 'glossaryInstance',
|
|
96
|
+
attrs: {
|
|
97
|
+
glossary: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
|
|
98
|
+
uuid: '5ba67072-54e0-4b5c-a446-6aaa11eb6053',
|
|
99
|
+
},
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
type: 'text',
|
|
105
|
+
text: ', 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 ',
|
|
106
|
+
attrs: {
|
|
107
|
+
start: 46,
|
|
108
|
+
end: 210,
|
|
109
|
+
},
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
type: 'text',
|
|
113
|
+
text: 'thought of awakening',
|
|
114
|
+
attrs: {
|
|
115
|
+
start: 210,
|
|
116
|
+
end: 230,
|
|
117
|
+
},
|
|
118
|
+
marks: [
|
|
119
|
+
{
|
|
120
|
+
type: 'glossaryInstance',
|
|
121
|
+
attrs: {
|
|
122
|
+
glossary: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
|
|
123
|
+
uuid: 'b9c0010a-3b22-40c6-b85b-bc6437ab1740',
|
|
124
|
+
},
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
type: 'text',
|
|
130
|
+
text: ', (2) the ',
|
|
131
|
+
attrs: {
|
|
132
|
+
start: 230,
|
|
133
|
+
end: 240,
|
|
134
|
+
},
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
type: 'text',
|
|
138
|
+
text: 'spiritual friend',
|
|
139
|
+
attrs: {
|
|
140
|
+
start: 240,
|
|
141
|
+
end: 256,
|
|
142
|
+
},
|
|
143
|
+
marks: [
|
|
144
|
+
{
|
|
145
|
+
type: 'glossaryInstance',
|
|
146
|
+
attrs: {
|
|
147
|
+
glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
|
|
148
|
+
uuid: 'e05d0163-3b41-46df-8eba-f6e0a34e5b83',
|
|
149
|
+
},
|
|
150
|
+
},
|
|
151
|
+
],
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
type: 'text',
|
|
155
|
+
text: ', (3) ',
|
|
156
|
+
attrs: {
|
|
157
|
+
start: 256,
|
|
158
|
+
end: 262,
|
|
159
|
+
},
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
type: 'text',
|
|
163
|
+
text: 'tolerance',
|
|
164
|
+
attrs: {
|
|
165
|
+
start: 262,
|
|
166
|
+
end: 271,
|
|
167
|
+
},
|
|
168
|
+
marks: [
|
|
169
|
+
{
|
|
170
|
+
type: 'glossaryInstance',
|
|
171
|
+
attrs: {
|
|
172
|
+
glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
|
|
173
|
+
uuid: 'e2c29dee-968f-49c2-9a35-d4f8fa6ac26f',
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
},
|
|
178
|
+
{
|
|
179
|
+
type: 'text',
|
|
180
|
+
text: ' and ',
|
|
181
|
+
attrs: {
|
|
182
|
+
start: 271,
|
|
183
|
+
end: 276,
|
|
184
|
+
},
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
type: 'text',
|
|
188
|
+
text: 'lenience',
|
|
189
|
+
attrs: {
|
|
190
|
+
start: 276,
|
|
191
|
+
end: 284,
|
|
192
|
+
},
|
|
193
|
+
marks: [
|
|
194
|
+
{
|
|
195
|
+
type: 'glossaryInstance',
|
|
196
|
+
attrs: {
|
|
197
|
+
glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
|
|
198
|
+
uuid: '9e8f4286-3a2f-4ec6-954d-49894ace7797',
|
|
199
|
+
},
|
|
200
|
+
},
|
|
201
|
+
],
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
type: 'text',
|
|
205
|
+
text: ' (which are here counted as one), and (4) ',
|
|
206
|
+
attrs: {
|
|
207
|
+
start: 284,
|
|
208
|
+
end: 326,
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
type: 'text',
|
|
213
|
+
text: 'dwelling in the wilderness',
|
|
214
|
+
attrs: {
|
|
215
|
+
start: 326,
|
|
216
|
+
end: 352,
|
|
217
|
+
},
|
|
218
|
+
marks: [
|
|
219
|
+
{
|
|
220
|
+
type: 'glossaryInstance',
|
|
221
|
+
attrs: {
|
|
222
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
223
|
+
uuid: 'daa8f2de-672e-47b9-944d-aa6df327cc85',
|
|
224
|
+
},
|
|
225
|
+
},
|
|
226
|
+
],
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
type: 'text',
|
|
230
|
+
text: '. 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.',
|
|
231
|
+
attrs: {
|
|
232
|
+
start: 352,
|
|
233
|
+
end: 517,
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
],
|
|
237
|
+
},
|
|
238
|
+
],
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
type: 'passage',
|
|
242
|
+
attrs: {
|
|
243
|
+
uuid: '598d0186-3b3e-456f-8d1f-8b64042c7f7c',
|
|
244
|
+
sort: 20,
|
|
245
|
+
type: 'acknowledgmentHeader',
|
|
246
|
+
label: 'ac.',
|
|
247
|
+
alignments: {},
|
|
248
|
+
},
|
|
249
|
+
content: [
|
|
250
|
+
{
|
|
251
|
+
type: 'heading',
|
|
252
|
+
attrs: {
|
|
253
|
+
level: 2,
|
|
254
|
+
start: 0,
|
|
255
|
+
end: 16,
|
|
256
|
+
uuid: '1e1ada36-bdb8-4ab4-aaad-fbb71e7a3dd5',
|
|
257
|
+
class: 'section-title',
|
|
258
|
+
},
|
|
259
|
+
content: [
|
|
260
|
+
{
|
|
261
|
+
type: 'text',
|
|
262
|
+
text: 'Acknowledgements',
|
|
263
|
+
attrs: {
|
|
264
|
+
start: 0,
|
|
265
|
+
end: 16,
|
|
266
|
+
},
|
|
267
|
+
},
|
|
268
|
+
],
|
|
269
|
+
},
|
|
270
|
+
],
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
type: 'passage',
|
|
274
|
+
attrs: {
|
|
275
|
+
uuid: '34760e3e-0cb0-4bfa-b523-cf305f94b393',
|
|
276
|
+
sort: 22,
|
|
277
|
+
type: 'acknowledgment',
|
|
278
|
+
label: 'ac.1',
|
|
279
|
+
alignments: {},
|
|
280
|
+
},
|
|
281
|
+
content: [
|
|
282
|
+
{
|
|
283
|
+
type: 'paragraph',
|
|
284
|
+
attrs: {
|
|
285
|
+
start: 0,
|
|
286
|
+
end: 167,
|
|
287
|
+
uuid: '34760e3e-0cb0-4bfa-b523-cf305f94b393',
|
|
288
|
+
},
|
|
289
|
+
content: [
|
|
290
|
+
{
|
|
291
|
+
type: 'text',
|
|
292
|
+
text: '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.',
|
|
293
|
+
attrs: {
|
|
294
|
+
start: 0,
|
|
295
|
+
end: 167,
|
|
296
|
+
},
|
|
297
|
+
},
|
|
298
|
+
],
|
|
299
|
+
},
|
|
300
|
+
],
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
type: 'passage',
|
|
304
|
+
attrs: {
|
|
305
|
+
uuid: 'e74a4608-44d2-41ae-8017-a2b2ea02574a',
|
|
306
|
+
sort: 24,
|
|
307
|
+
type: 'introductionHeader',
|
|
308
|
+
label: 'i.',
|
|
309
|
+
alignments: {},
|
|
310
|
+
},
|
|
311
|
+
content: [
|
|
312
|
+
{
|
|
313
|
+
type: 'heading',
|
|
314
|
+
attrs: {
|
|
315
|
+
level: 2,
|
|
316
|
+
start: 0,
|
|
317
|
+
end: 12,
|
|
318
|
+
uuid: '3a1e9427-0485-4753-80ca-8929daf94585',
|
|
319
|
+
class: 'section-title',
|
|
320
|
+
},
|
|
321
|
+
content: [
|
|
322
|
+
{
|
|
323
|
+
type: 'text',
|
|
324
|
+
text: 'Introduction',
|
|
325
|
+
attrs: {
|
|
326
|
+
start: 0,
|
|
327
|
+
end: 12,
|
|
328
|
+
},
|
|
329
|
+
},
|
|
330
|
+
],
|
|
331
|
+
},
|
|
332
|
+
],
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
type: 'passage',
|
|
336
|
+
attrs: {
|
|
337
|
+
uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
|
|
338
|
+
sort: 26,
|
|
339
|
+
type: 'introduction',
|
|
340
|
+
label: 'i.1',
|
|
341
|
+
alignments: {},
|
|
342
|
+
},
|
|
343
|
+
content: [
|
|
344
|
+
{
|
|
345
|
+
type: 'paragraph',
|
|
346
|
+
attrs: {
|
|
347
|
+
start: 0,
|
|
348
|
+
end: 332,
|
|
349
|
+
uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
|
|
350
|
+
},
|
|
351
|
+
content: [
|
|
352
|
+
{
|
|
353
|
+
type: 'text',
|
|
354
|
+
text: 'The Noble Mahāyāna Sūtra on the Four Factors ',
|
|
355
|
+
attrs: {
|
|
356
|
+
start: 0,
|
|
357
|
+
end: 45,
|
|
358
|
+
},
|
|
359
|
+
marks: [
|
|
360
|
+
{
|
|
361
|
+
type: 'italic',
|
|
362
|
+
attrs: {
|
|
363
|
+
uuid: 'a4c61f15-5acb-4007-bd64-7b668d94b2a6',
|
|
364
|
+
lang: 'en',
|
|
365
|
+
type: 'inlineTitle',
|
|
366
|
+
},
|
|
367
|
+
},
|
|
368
|
+
],
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
type: 'text',
|
|
372
|
+
text: '(',
|
|
373
|
+
attrs: {
|
|
374
|
+
start: 45,
|
|
375
|
+
end: 46,
|
|
376
|
+
},
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
type: 'text',
|
|
380
|
+
text: 'Āryacaturdharmakanāmamahāyāna sūtra)',
|
|
381
|
+
attrs: {
|
|
382
|
+
start: 46,
|
|
383
|
+
end: 87,
|
|
384
|
+
},
|
|
385
|
+
marks: [
|
|
386
|
+
{
|
|
387
|
+
type: 'italic',
|
|
388
|
+
attrs: {
|
|
389
|
+
uuid: '900771e9-2305-49c1-9514-2eeda2318021',
|
|
390
|
+
lang: 'Sa-Ltn',
|
|
391
|
+
type: 'inlineTitle',
|
|
392
|
+
},
|
|
393
|
+
},
|
|
394
|
+
],
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
type: 'text',
|
|
398
|
+
text: ' is the third of three short sūtras with similar titles (all referring to sets of four ',
|
|
399
|
+
attrs: {
|
|
400
|
+
start: 87,
|
|
401
|
+
end: 174,
|
|
402
|
+
},
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
type: 'text',
|
|
406
|
+
text: 'dharmas',
|
|
407
|
+
attrs: {
|
|
408
|
+
start: 174,
|
|
409
|
+
end: 181,
|
|
410
|
+
},
|
|
411
|
+
marks: [
|
|
412
|
+
{
|
|
413
|
+
type: 'italic',
|
|
414
|
+
attrs: {
|
|
415
|
+
start: 174,
|
|
416
|
+
end: 181,
|
|
417
|
+
uuid: '53647c8d-c64b-4533-b381-6ff17fb994cb',
|
|
418
|
+
type: 'span',
|
|
419
|
+
lang: 'Sa-Ltn',
|
|
420
|
+
textStyle: 'foreign',
|
|
421
|
+
},
|
|
422
|
+
},
|
|
423
|
+
],
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
type: 'text',
|
|
427
|
+
text: ' or factors of the path). In many Kangyurs (predominantly those of Tshalpa origin, including the Degé Kangyur) these sūtras are found grouped together.',
|
|
428
|
+
attrs: {
|
|
429
|
+
start: 181,
|
|
430
|
+
end: 332,
|
|
431
|
+
},
|
|
432
|
+
},
|
|
433
|
+
],
|
|
434
|
+
},
|
|
435
|
+
],
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
type: 'passage',
|
|
439
|
+
attrs: {
|
|
440
|
+
uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
|
|
441
|
+
sort: 33,
|
|
442
|
+
type: 'introduction',
|
|
443
|
+
label: 'i.2',
|
|
444
|
+
alignments: {},
|
|
445
|
+
},
|
|
446
|
+
content: [
|
|
447
|
+
{
|
|
448
|
+
type: 'paragraph',
|
|
449
|
+
attrs: {
|
|
450
|
+
start: 0,
|
|
451
|
+
end: 640,
|
|
452
|
+
uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
|
|
453
|
+
},
|
|
454
|
+
content: [
|
|
455
|
+
{
|
|
456
|
+
type: 'text',
|
|
457
|
+
text: 'Of the other sūtras in this set, ',
|
|
458
|
+
attrs: {
|
|
459
|
+
start: 0,
|
|
460
|
+
end: 33,
|
|
461
|
+
},
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
type: 'text',
|
|
465
|
+
text: 'The Sūtra Teaching the Four Factors ',
|
|
466
|
+
attrs: {
|
|
467
|
+
start: 33,
|
|
468
|
+
end: 69,
|
|
469
|
+
},
|
|
470
|
+
marks: [
|
|
471
|
+
{
|
|
472
|
+
type: 'italic',
|
|
473
|
+
attrs: {
|
|
474
|
+
uuid: '6e26360d-627d-4a9e-91e6-a81e2b38432a',
|
|
475
|
+
lang: 'en',
|
|
476
|
+
type: 'inlineTitle',
|
|
477
|
+
},
|
|
478
|
+
},
|
|
479
|
+
],
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
type: 'text',
|
|
483
|
+
text: '(Toh 249)',
|
|
484
|
+
attrs: {
|
|
485
|
+
start: 69,
|
|
486
|
+
end: 78,
|
|
487
|
+
},
|
|
488
|
+
marks: [
|
|
489
|
+
{
|
|
490
|
+
type: 'endNoteLink',
|
|
491
|
+
attrs: {
|
|
492
|
+
notes: [
|
|
493
|
+
{
|
|
494
|
+
endNote: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
|
|
495
|
+
label: '1',
|
|
496
|
+
uuid: '1b1d26bc-4f47-44c3-a6e0-f2ff94f38116',
|
|
497
|
+
start: 78,
|
|
498
|
+
end: 78,
|
|
499
|
+
location: 'end',
|
|
500
|
+
},
|
|
501
|
+
],
|
|
502
|
+
},
|
|
503
|
+
},
|
|
504
|
+
],
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
type: 'text',
|
|
508
|
+
text: ' is concerned with the four factors necessary for the practice of confession, while ',
|
|
509
|
+
attrs: {
|
|
510
|
+
start: 78,
|
|
511
|
+
end: 162,
|
|
512
|
+
},
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
type: 'text',
|
|
516
|
+
text: 'The Four Factors ',
|
|
517
|
+
attrs: {
|
|
518
|
+
start: 162,
|
|
519
|
+
end: 179,
|
|
520
|
+
},
|
|
521
|
+
marks: [
|
|
522
|
+
{
|
|
523
|
+
type: 'italic',
|
|
524
|
+
attrs: {
|
|
525
|
+
uuid: '159a9e7f-d8fb-46ae-8a2c-7ea20a831291',
|
|
526
|
+
lang: 'en',
|
|
527
|
+
type: 'inlineTitle',
|
|
528
|
+
},
|
|
529
|
+
},
|
|
530
|
+
],
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
type: 'text',
|
|
534
|
+
text: '(Toh 250)',
|
|
535
|
+
attrs: {
|
|
536
|
+
start: 179,
|
|
537
|
+
end: 188,
|
|
538
|
+
},
|
|
539
|
+
marks: [
|
|
540
|
+
{
|
|
541
|
+
type: 'endNoteLink',
|
|
542
|
+
attrs: {
|
|
543
|
+
notes: [
|
|
544
|
+
{
|
|
545
|
+
endNote: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
|
|
546
|
+
label: '2',
|
|
547
|
+
uuid: '30d3420e-b3f8-4b41-97e7-94242c6ad9a2',
|
|
548
|
+
start: 188,
|
|
549
|
+
end: 188,
|
|
550
|
+
location: 'end',
|
|
551
|
+
},
|
|
552
|
+
],
|
|
553
|
+
},
|
|
554
|
+
},
|
|
555
|
+
],
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
type: 'text',
|
|
559
|
+
text: ' identifies four beliefs that a wise son of a good family should not accept as true. Two further works, ',
|
|
560
|
+
attrs: {
|
|
561
|
+
start: 188,
|
|
562
|
+
end: 292,
|
|
563
|
+
},
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
type: 'text',
|
|
567
|
+
text: 'The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa ',
|
|
568
|
+
attrs: {
|
|
569
|
+
start: 292,
|
|
570
|
+
end: 371,
|
|
571
|
+
},
|
|
572
|
+
marks: [
|
|
573
|
+
{
|
|
574
|
+
type: 'italic',
|
|
575
|
+
attrs: {
|
|
576
|
+
uuid: '4681e4c3-f07f-49c2-b061-9fec15722cb2',
|
|
577
|
+
lang: 'en',
|
|
578
|
+
type: 'inlineTitle',
|
|
579
|
+
},
|
|
580
|
+
},
|
|
581
|
+
],
|
|
582
|
+
},
|
|
583
|
+
{
|
|
584
|
+
type: 'text',
|
|
585
|
+
text: '(Toh 248)',
|
|
586
|
+
attrs: {
|
|
587
|
+
start: 371,
|
|
588
|
+
end: 380,
|
|
589
|
+
},
|
|
590
|
+
marks: [
|
|
591
|
+
{
|
|
592
|
+
type: 'endNoteLink',
|
|
593
|
+
attrs: {
|
|
594
|
+
notes: [
|
|
595
|
+
{
|
|
596
|
+
endNote: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
|
|
597
|
+
label: '3',
|
|
598
|
+
uuid: 'badbdb97-b3e8-4dca-b31c-0a28c8432e6f',
|
|
599
|
+
start: 380,
|
|
600
|
+
end: 380,
|
|
601
|
+
location: 'end',
|
|
602
|
+
},
|
|
603
|
+
],
|
|
604
|
+
},
|
|
605
|
+
},
|
|
606
|
+
],
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
type: 'text',
|
|
610
|
+
text: ' and ',
|
|
611
|
+
attrs: {
|
|
612
|
+
start: 380,
|
|
613
|
+
end: 385,
|
|
614
|
+
},
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
type: 'text',
|
|
618
|
+
text: 'The Fourfold Accomplishment ',
|
|
619
|
+
attrs: {
|
|
620
|
+
start: 385,
|
|
621
|
+
end: 413,
|
|
622
|
+
},
|
|
623
|
+
marks: [
|
|
624
|
+
{
|
|
625
|
+
type: 'italic',
|
|
626
|
+
attrs: {
|
|
627
|
+
uuid: 'e085cc9f-637c-4c8c-bcb1-f62d6d47c3f3',
|
|
628
|
+
lang: 'en',
|
|
629
|
+
type: 'inlineTitle',
|
|
630
|
+
},
|
|
631
|
+
},
|
|
632
|
+
],
|
|
633
|
+
},
|
|
634
|
+
{
|
|
635
|
+
type: 'text',
|
|
636
|
+
text: '(Toh 252)',
|
|
637
|
+
attrs: {
|
|
638
|
+
start: 413,
|
|
639
|
+
end: 422,
|
|
640
|
+
},
|
|
641
|
+
marks: [
|
|
642
|
+
{
|
|
643
|
+
type: 'endNoteLink',
|
|
644
|
+
attrs: {
|
|
645
|
+
notes: [
|
|
646
|
+
{
|
|
647
|
+
endNote: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
|
|
648
|
+
label: '4',
|
|
649
|
+
uuid: '54c51c32-4597-4174-9e23-184521c456e3',
|
|
650
|
+
start: 422,
|
|
651
|
+
end: 422,
|
|
652
|
+
location: 'end',
|
|
653
|
+
},
|
|
654
|
+
],
|
|
655
|
+
},
|
|
656
|
+
},
|
|
657
|
+
],
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
type: 'text',
|
|
661
|
+
text: ' also concern themselves with “sets of four” (',
|
|
662
|
+
attrs: {
|
|
663
|
+
start: 422,
|
|
664
|
+
end: 468,
|
|
665
|
+
},
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
type: 'text',
|
|
669
|
+
text: 'catuṣka',
|
|
670
|
+
attrs: {
|
|
671
|
+
start: 468,
|
|
672
|
+
end: 475,
|
|
673
|
+
},
|
|
674
|
+
marks: [
|
|
675
|
+
{
|
|
676
|
+
type: 'italic',
|
|
677
|
+
attrs: {
|
|
678
|
+
start: 468,
|
|
679
|
+
end: 475,
|
|
680
|
+
uuid: '66346061-42b1-46ae-844d-a04f5bb9378b',
|
|
681
|
+
type: 'span',
|
|
682
|
+
lang: 'Sa-Ltn',
|
|
683
|
+
textStyle: 'foreign',
|
|
684
|
+
},
|
|
685
|
+
},
|
|
686
|
+
],
|
|
687
|
+
},
|
|
688
|
+
{
|
|
689
|
+
type: 'text',
|
|
690
|
+
text: ', ',
|
|
691
|
+
attrs: {
|
|
692
|
+
start: 475,
|
|
693
|
+
end: 477,
|
|
694
|
+
},
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
type: 'text',
|
|
698
|
+
text: 'bzhi pa',
|
|
699
|
+
attrs: {
|
|
700
|
+
start: 477,
|
|
701
|
+
end: 484,
|
|
702
|
+
},
|
|
703
|
+
marks: [
|
|
704
|
+
{
|
|
705
|
+
type: 'italic',
|
|
706
|
+
attrs: {
|
|
707
|
+
start: 477,
|
|
708
|
+
end: 484,
|
|
709
|
+
uuid: '108a6129-2c82-4b66-8b61-8f1fd21b4986',
|
|
710
|
+
type: 'span',
|
|
711
|
+
lang: 'Bo-Ltn',
|
|
712
|
+
textStyle: 'foreign',
|
|
713
|
+
},
|
|
714
|
+
},
|
|
715
|
+
],
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
type: 'text',
|
|
719
|
+
text: '), 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.',
|
|
720
|
+
attrs: {
|
|
721
|
+
start: 484,
|
|
722
|
+
end: 640,
|
|
723
|
+
},
|
|
724
|
+
},
|
|
725
|
+
],
|
|
726
|
+
},
|
|
727
|
+
],
|
|
728
|
+
},
|
|
729
|
+
{
|
|
730
|
+
type: 'passage',
|
|
731
|
+
attrs: {
|
|
732
|
+
uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
|
|
733
|
+
sort: 55,
|
|
734
|
+
type: 'introduction',
|
|
735
|
+
label: 'i.3',
|
|
736
|
+
alignments: {},
|
|
737
|
+
},
|
|
738
|
+
content: [
|
|
739
|
+
{
|
|
740
|
+
type: 'paragraph',
|
|
741
|
+
attrs: {
|
|
742
|
+
start: 0,
|
|
743
|
+
end: 583,
|
|
744
|
+
uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
|
|
745
|
+
},
|
|
746
|
+
content: [
|
|
747
|
+
{
|
|
748
|
+
type: 'text',
|
|
749
|
+
text: 'In the present sūtra, ',
|
|
750
|
+
attrs: {
|
|
751
|
+
start: 0,
|
|
752
|
+
end: 22,
|
|
753
|
+
},
|
|
754
|
+
},
|
|
755
|
+
{
|
|
756
|
+
type: 'text',
|
|
757
|
+
text: 'dharma',
|
|
758
|
+
attrs: {
|
|
759
|
+
start: 22,
|
|
760
|
+
end: 28,
|
|
761
|
+
},
|
|
762
|
+
marks: [
|
|
763
|
+
{
|
|
764
|
+
type: 'italic',
|
|
765
|
+
attrs: {
|
|
766
|
+
start: 22,
|
|
767
|
+
end: 28,
|
|
768
|
+
uuid: '61689b2b-a597-49d5-a49a-49e5f4761f1d',
|
|
769
|
+
type: 'span',
|
|
770
|
+
lang: 'Sa-Ltn',
|
|
771
|
+
textStyle: 'foreign',
|
|
772
|
+
},
|
|
773
|
+
},
|
|
774
|
+
],
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
type: 'text',
|
|
778
|
+
text: ' 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 ',
|
|
779
|
+
attrs: {
|
|
780
|
+
start: 28,
|
|
781
|
+
end: 305,
|
|
782
|
+
},
|
|
783
|
+
},
|
|
784
|
+
{
|
|
785
|
+
type: 'text',
|
|
786
|
+
text: 'thought of awakening',
|
|
787
|
+
attrs: {
|
|
788
|
+
start: 305,
|
|
789
|
+
end: 325,
|
|
790
|
+
},
|
|
791
|
+
marks: [
|
|
792
|
+
{
|
|
793
|
+
type: 'glossaryInstance',
|
|
794
|
+
attrs: {
|
|
795
|
+
glossary: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
|
|
796
|
+
uuid: 'd7ff4c34-60d9-4a4e-8cc0-541c097de9c2',
|
|
797
|
+
},
|
|
798
|
+
},
|
|
799
|
+
],
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
type: 'text',
|
|
803
|
+
text: ', (2) the ',
|
|
804
|
+
attrs: {
|
|
805
|
+
start: 325,
|
|
806
|
+
end: 335,
|
|
807
|
+
},
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
type: 'text',
|
|
811
|
+
text: 'spiritual friend',
|
|
812
|
+
attrs: {
|
|
813
|
+
start: 335,
|
|
814
|
+
end: 351,
|
|
815
|
+
},
|
|
816
|
+
marks: [
|
|
817
|
+
{
|
|
818
|
+
type: 'glossaryInstance',
|
|
819
|
+
attrs: {
|
|
820
|
+
glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
|
|
821
|
+
uuid: 'af62f1c4-20e8-44f5-9aa0-59dd50a1e70b',
|
|
822
|
+
},
|
|
823
|
+
},
|
|
824
|
+
],
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
type: 'text',
|
|
828
|
+
text: ' or companion and guide in virtue, (3) ',
|
|
829
|
+
attrs: {
|
|
830
|
+
start: 351,
|
|
831
|
+
end: 390,
|
|
832
|
+
},
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
type: 'text',
|
|
836
|
+
text: 'tolerance',
|
|
837
|
+
attrs: {
|
|
838
|
+
start: 390,
|
|
839
|
+
end: 399,
|
|
840
|
+
},
|
|
841
|
+
marks: [
|
|
842
|
+
{
|
|
843
|
+
type: 'glossaryInstance',
|
|
844
|
+
attrs: {
|
|
845
|
+
glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
|
|
846
|
+
uuid: '29dd0b50-37c1-48a4-a7f0-053a52df4726',
|
|
847
|
+
},
|
|
848
|
+
},
|
|
849
|
+
],
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
type: 'text',
|
|
853
|
+
text: ' and ',
|
|
854
|
+
attrs: {
|
|
855
|
+
start: 399,
|
|
856
|
+
end: 404,
|
|
857
|
+
},
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
type: 'text',
|
|
861
|
+
text: 'lenience',
|
|
862
|
+
attrs: {
|
|
863
|
+
start: 404,
|
|
864
|
+
end: 412,
|
|
865
|
+
},
|
|
866
|
+
marks: [
|
|
867
|
+
{
|
|
868
|
+
type: 'glossaryInstance',
|
|
869
|
+
attrs: {
|
|
870
|
+
glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
|
|
871
|
+
uuid: '13e16fac-6f0f-4ce3-b631-b2c32f8a8bdc',
|
|
872
|
+
},
|
|
873
|
+
},
|
|
874
|
+
],
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
type: 'text',
|
|
878
|
+
text: ', considered here as a pair, and (4) ',
|
|
879
|
+
attrs: {
|
|
880
|
+
start: 412,
|
|
881
|
+
end: 449,
|
|
882
|
+
},
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
type: 'text',
|
|
886
|
+
text: 'dwelling in the wilderness',
|
|
887
|
+
attrs: {
|
|
888
|
+
start: 449,
|
|
889
|
+
end: 475,
|
|
890
|
+
},
|
|
891
|
+
marks: [
|
|
892
|
+
{
|
|
893
|
+
type: 'glossaryInstance',
|
|
894
|
+
attrs: {
|
|
895
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
896
|
+
uuid: '42200049-3ffb-4646-9418-1e1876172785',
|
|
897
|
+
},
|
|
898
|
+
},
|
|
899
|
+
],
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
type: 'text',
|
|
903
|
+
text: ', that is, in a place suitably removed from the social world of the town so as to enable spiritual practice.',
|
|
904
|
+
attrs: {
|
|
905
|
+
start: 475,
|
|
906
|
+
end: 583,
|
|
907
|
+
},
|
|
908
|
+
},
|
|
909
|
+
],
|
|
910
|
+
},
|
|
911
|
+
],
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
type: 'passage',
|
|
915
|
+
attrs: {
|
|
916
|
+
uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
|
|
917
|
+
sort: 69,
|
|
918
|
+
type: 'introduction',
|
|
919
|
+
label: 'i.4',
|
|
920
|
+
alignments: {},
|
|
921
|
+
},
|
|
922
|
+
content: [
|
|
923
|
+
{
|
|
924
|
+
type: 'paragraph',
|
|
925
|
+
attrs: {
|
|
926
|
+
start: 0,
|
|
927
|
+
end: 556,
|
|
928
|
+
uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
|
|
929
|
+
},
|
|
930
|
+
content: [
|
|
931
|
+
{
|
|
932
|
+
type: 'text',
|
|
933
|
+
text: 'The Buddha presents these four factors using this formula: “For as long as they live, bodhisattvas, ',
|
|
934
|
+
attrs: {
|
|
935
|
+
start: 0,
|
|
936
|
+
end: 100,
|
|
937
|
+
},
|
|
938
|
+
},
|
|
939
|
+
{
|
|
940
|
+
type: 'text',
|
|
941
|
+
text: 'great beings',
|
|
942
|
+
attrs: {
|
|
943
|
+
start: 100,
|
|
944
|
+
end: 112,
|
|
945
|
+
},
|
|
946
|
+
marks: [
|
|
947
|
+
{
|
|
948
|
+
type: 'glossaryInstance',
|
|
949
|
+
attrs: {
|
|
950
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
951
|
+
uuid: '17e2072d-1653-4bba-8ad5-ce8d2956a595',
|
|
952
|
+
},
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
type: 'text',
|
|
958
|
+
text: ', should not abandon ',
|
|
959
|
+
attrs: {
|
|
960
|
+
start: 112,
|
|
961
|
+
end: 133,
|
|
962
|
+
},
|
|
963
|
+
},
|
|
964
|
+
{
|
|
965
|
+
type: 'text',
|
|
966
|
+
text: 'x',
|
|
967
|
+
attrs: {
|
|
968
|
+
start: 133,
|
|
969
|
+
end: 134,
|
|
970
|
+
},
|
|
971
|
+
marks: [
|
|
972
|
+
{
|
|
973
|
+
type: 'italic',
|
|
974
|
+
attrs: {
|
|
975
|
+
start: 133,
|
|
976
|
+
end: 134,
|
|
977
|
+
uuid: '3228beba-a86c-41ea-92dd-522af762dd66',
|
|
978
|
+
type: 'span',
|
|
979
|
+
textStyle: 'distinct',
|
|
980
|
+
},
|
|
981
|
+
},
|
|
982
|
+
],
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
type: 'text',
|
|
986
|
+
text: ' 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 ',
|
|
987
|
+
attrs: {
|
|
988
|
+
start: 134,
|
|
989
|
+
end: 413,
|
|
990
|
+
},
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
type: 'text',
|
|
994
|
+
text: 'anaphora',
|
|
995
|
+
attrs: {
|
|
996
|
+
start: 413,
|
|
997
|
+
end: 421,
|
|
998
|
+
},
|
|
999
|
+
marks: [
|
|
1000
|
+
{
|
|
1001
|
+
type: 'italic',
|
|
1002
|
+
attrs: {
|
|
1003
|
+
start: 413,
|
|
1004
|
+
end: 421,
|
|
1005
|
+
uuid: 'b515e108-2937-4c9b-a7c0-fd5c86983872',
|
|
1006
|
+
type: 'span',
|
|
1007
|
+
lang: 'Sa-Ltn',
|
|
1008
|
+
textStyle: 'foreign',
|
|
1009
|
+
},
|
|
1010
|
+
},
|
|
1011
|
+
],
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
type: 'text',
|
|
1015
|
+
text: ' and ',
|
|
1016
|
+
attrs: {
|
|
1017
|
+
start: 421,
|
|
1018
|
+
end: 426,
|
|
1019
|
+
},
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
type: 'text',
|
|
1023
|
+
text: 'epistrophe',
|
|
1024
|
+
attrs: {
|
|
1025
|
+
start: 426,
|
|
1026
|
+
end: 436,
|
|
1027
|
+
},
|
|
1028
|
+
marks: [
|
|
1029
|
+
{
|
|
1030
|
+
type: 'italic',
|
|
1031
|
+
attrs: {
|
|
1032
|
+
start: 426,
|
|
1033
|
+
end: 436,
|
|
1034
|
+
uuid: '77334161-c18c-4136-8fc7-fd6758769620',
|
|
1035
|
+
type: 'span',
|
|
1036
|
+
lang: 'Sa-Ltn',
|
|
1037
|
+
textStyle: 'foreign',
|
|
1038
|
+
},
|
|
1039
|
+
},
|
|
1040
|
+
],
|
|
1041
|
+
},
|
|
1042
|
+
{
|
|
1043
|
+
type: 'text',
|
|
1044
|
+
text: ', repetition of the beginning and end phrases of a line—that is such a common feature of Buddhist canonical literature.',
|
|
1045
|
+
attrs: {
|
|
1046
|
+
start: 436,
|
|
1047
|
+
end: 556,
|
|
1048
|
+
},
|
|
1049
|
+
},
|
|
1050
|
+
],
|
|
1051
|
+
},
|
|
1052
|
+
],
|
|
1053
|
+
},
|
|
1054
|
+
{
|
|
1055
|
+
type: 'passage',
|
|
1056
|
+
attrs: {
|
|
1057
|
+
uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
|
|
1058
|
+
sort: 79,
|
|
1059
|
+
type: 'introduction',
|
|
1060
|
+
label: 'i.5',
|
|
1061
|
+
alignments: {},
|
|
1062
|
+
},
|
|
1063
|
+
content: [
|
|
1064
|
+
{
|
|
1065
|
+
type: 'paragraph',
|
|
1066
|
+
attrs: {
|
|
1067
|
+
start: 0,
|
|
1068
|
+
end: 419,
|
|
1069
|
+
uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
|
|
1070
|
+
},
|
|
1071
|
+
content: [
|
|
1072
|
+
{
|
|
1073
|
+
type: 'text',
|
|
1074
|
+
text: '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 ',
|
|
1075
|
+
attrs: {
|
|
1076
|
+
start: 0,
|
|
1077
|
+
end: 228,
|
|
1078
|
+
},
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
type: 'text',
|
|
1082
|
+
text: 'tolerance',
|
|
1083
|
+
attrs: {
|
|
1084
|
+
start: 228,
|
|
1085
|
+
end: 237,
|
|
1086
|
+
},
|
|
1087
|
+
marks: [
|
|
1088
|
+
{
|
|
1089
|
+
type: 'glossaryInstance',
|
|
1090
|
+
attrs: {
|
|
1091
|
+
glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
|
|
1092
|
+
uuid: '32592c1b-d066-41af-9e95-b5b6e572e4bb',
|
|
1093
|
+
},
|
|
1094
|
+
},
|
|
1095
|
+
],
|
|
1096
|
+
},
|
|
1097
|
+
{
|
|
1098
|
+
type: 'text',
|
|
1099
|
+
text: ' and ',
|
|
1100
|
+
attrs: {
|
|
1101
|
+
start: 237,
|
|
1102
|
+
end: 242,
|
|
1103
|
+
},
|
|
1104
|
+
},
|
|
1105
|
+
{
|
|
1106
|
+
type: 'text',
|
|
1107
|
+
text: 'lenience',
|
|
1108
|
+
attrs: {
|
|
1109
|
+
start: 242,
|
|
1110
|
+
end: 250,
|
|
1111
|
+
},
|
|
1112
|
+
marks: [
|
|
1113
|
+
{
|
|
1114
|
+
type: 'glossaryInstance',
|
|
1115
|
+
attrs: {
|
|
1116
|
+
glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
|
|
1117
|
+
uuid: '3848d908-389e-46f3-9d9b-a6be4ecd9652',
|
|
1118
|
+
},
|
|
1119
|
+
},
|
|
1120
|
+
],
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
type: 'text',
|
|
1124
|
+
text: ' preceding the factor of the ',
|
|
1125
|
+
attrs: {
|
|
1126
|
+
start: 250,
|
|
1127
|
+
end: 279,
|
|
1128
|
+
},
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
type: 'text',
|
|
1132
|
+
text: 'spiritual friend',
|
|
1133
|
+
attrs: {
|
|
1134
|
+
start: 279,
|
|
1135
|
+
end: 295,
|
|
1136
|
+
},
|
|
1137
|
+
marks: [
|
|
1138
|
+
{
|
|
1139
|
+
type: 'glossaryInstance',
|
|
1140
|
+
attrs: {
|
|
1141
|
+
glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
|
|
1142
|
+
uuid: 'a441bbfa-f494-49d1-b0ca-15cca2fec9fe',
|
|
1143
|
+
},
|
|
1144
|
+
},
|
|
1145
|
+
],
|
|
1146
|
+
},
|
|
1147
|
+
{
|
|
1148
|
+
type: 'text',
|
|
1149
|
+
text: '. They also exhort the wise bodhisattva to be as fearless as a lion, “the king of beasts,” while ',
|
|
1150
|
+
attrs: {
|
|
1151
|
+
start: 295,
|
|
1152
|
+
end: 392,
|
|
1153
|
+
},
|
|
1154
|
+
},
|
|
1155
|
+
{
|
|
1156
|
+
type: 'text',
|
|
1157
|
+
text: 'dwelling in the wilderness',
|
|
1158
|
+
attrs: {
|
|
1159
|
+
start: 392,
|
|
1160
|
+
end: 418,
|
|
1161
|
+
},
|
|
1162
|
+
marks: [
|
|
1163
|
+
{
|
|
1164
|
+
type: 'glossaryInstance',
|
|
1165
|
+
attrs: {
|
|
1166
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
1167
|
+
uuid: '208b82c3-25ef-40fe-a136-1a1110c141dd',
|
|
1168
|
+
},
|
|
1169
|
+
},
|
|
1170
|
+
],
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
type: 'text',
|
|
1174
|
+
text: '.',
|
|
1175
|
+
attrs: {
|
|
1176
|
+
start: 418,
|
|
1177
|
+
end: 419,
|
|
1178
|
+
},
|
|
1179
|
+
},
|
|
1180
|
+
],
|
|
1181
|
+
},
|
|
1182
|
+
],
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
type: 'passage',
|
|
1186
|
+
attrs: {
|
|
1187
|
+
uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
|
|
1188
|
+
sort: 89,
|
|
1189
|
+
type: 'introduction',
|
|
1190
|
+
label: 'i.6',
|
|
1191
|
+
alignments: {},
|
|
1192
|
+
},
|
|
1193
|
+
content: [
|
|
1194
|
+
{
|
|
1195
|
+
type: 'paragraph',
|
|
1196
|
+
attrs: {
|
|
1197
|
+
start: 0,
|
|
1198
|
+
end: 731,
|
|
1199
|
+
uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
|
|
1200
|
+
hasLeadingSpace: true,
|
|
1201
|
+
leadingSpaceUuid: '8512d924-48b2-477a-a306-35dd5c1b2227',
|
|
1202
|
+
},
|
|
1203
|
+
content: [
|
|
1204
|
+
{
|
|
1205
|
+
type: 'text',
|
|
1206
|
+
text: 'The Chinese Tripiṭaka contains two translations of the sūtra (Taishō 772',
|
|
1207
|
+
attrs: {
|
|
1208
|
+
start: 0,
|
|
1209
|
+
end: 72,
|
|
1210
|
+
},
|
|
1211
|
+
marks: [
|
|
1212
|
+
{
|
|
1213
|
+
type: 'endNoteLink',
|
|
1214
|
+
attrs: {
|
|
1215
|
+
notes: [
|
|
1216
|
+
{
|
|
1217
|
+
endNote: 'b63546f7-f747-42eb-83e4-4508719b0342',
|
|
1218
|
+
label: '5',
|
|
1219
|
+
uuid: '62eb1703-fb29-4c87-addf-cceb31efc04a',
|
|
1220
|
+
start: 72,
|
|
1221
|
+
end: 72,
|
|
1222
|
+
location: 'end',
|
|
1223
|
+
},
|
|
1224
|
+
],
|
|
1225
|
+
},
|
|
1226
|
+
},
|
|
1227
|
+
],
|
|
1228
|
+
},
|
|
1229
|
+
{
|
|
1230
|
+
type: 'text',
|
|
1231
|
+
text: ' & Taishō 773',
|
|
1232
|
+
attrs: {
|
|
1233
|
+
start: 72,
|
|
1234
|
+
end: 85,
|
|
1235
|
+
},
|
|
1236
|
+
marks: [
|
|
1237
|
+
{
|
|
1238
|
+
type: 'endNoteLink',
|
|
1239
|
+
attrs: {
|
|
1240
|
+
notes: [
|
|
1241
|
+
{
|
|
1242
|
+
endNote: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
|
|
1243
|
+
label: '6',
|
|
1244
|
+
uuid: 'f6eeb3c2-b289-464a-9b5b-a0dee255908e',
|
|
1245
|
+
start: 85,
|
|
1246
|
+
end: 85,
|
|
1247
|
+
location: 'end',
|
|
1248
|
+
},
|
|
1249
|
+
],
|
|
1250
|
+
},
|
|
1251
|
+
},
|
|
1252
|
+
],
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
type: 'text',
|
|
1256
|
+
text: '), both by Divākara and dated to 680 ',
|
|
1257
|
+
attrs: {
|
|
1258
|
+
start: 85,
|
|
1259
|
+
end: 122,
|
|
1260
|
+
},
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
type: 'text',
|
|
1264
|
+
text: 'ᴄᴇ',
|
|
1265
|
+
attrs: {
|
|
1266
|
+
start: 122,
|
|
1267
|
+
end: 124,
|
|
1268
|
+
},
|
|
1269
|
+
marks: [
|
|
1270
|
+
{
|
|
1271
|
+
type: 'smallCaps',
|
|
1272
|
+
attrs: {
|
|
1273
|
+
start: 122,
|
|
1274
|
+
end: 124,
|
|
1275
|
+
uuid: '278c349d-783a-489c-8f3d-222b7155fa83',
|
|
1276
|
+
type: 'span',
|
|
1277
|
+
textStyle: 'small-caps',
|
|
1278
|
+
},
|
|
1279
|
+
},
|
|
1280
|
+
],
|
|
1281
|
+
},
|
|
1282
|
+
{
|
|
1283
|
+
type: 'text',
|
|
1284
|
+
text: ' and 681 ',
|
|
1285
|
+
attrs: {
|
|
1286
|
+
start: 124,
|
|
1287
|
+
end: 133,
|
|
1288
|
+
},
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
type: 'text',
|
|
1292
|
+
text: 'ᴄᴇ',
|
|
1293
|
+
attrs: {
|
|
1294
|
+
start: 133,
|
|
1295
|
+
end: 135,
|
|
1296
|
+
},
|
|
1297
|
+
marks: [
|
|
1298
|
+
{
|
|
1299
|
+
type: 'smallCaps',
|
|
1300
|
+
attrs: {
|
|
1301
|
+
start: 133,
|
|
1302
|
+
end: 135,
|
|
1303
|
+
uuid: 'e36c2266-0ccb-4fd8-861a-8cc92e31e66e',
|
|
1304
|
+
type: 'span',
|
|
1305
|
+
textStyle: 'small-caps',
|
|
1306
|
+
},
|
|
1307
|
+
},
|
|
1308
|
+
],
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
type: 'text',
|
|
1312
|
+
text: '.',
|
|
1313
|
+
attrs: {
|
|
1314
|
+
start: 135,
|
|
1315
|
+
end: 136,
|
|
1316
|
+
},
|
|
1317
|
+
marks: [
|
|
1318
|
+
{
|
|
1319
|
+
type: 'endNoteLink',
|
|
1320
|
+
attrs: {
|
|
1321
|
+
notes: [
|
|
1322
|
+
{
|
|
1323
|
+
endNote: 'aa913b64-fd95-433b-92ff-e756258f55c0',
|
|
1324
|
+
label: '7',
|
|
1325
|
+
uuid: 'd1af8487-12fb-42f7-af65-6f3938e5031c',
|
|
1326
|
+
start: 136,
|
|
1327
|
+
end: 136,
|
|
1328
|
+
location: 'end',
|
|
1329
|
+
},
|
|
1330
|
+
],
|
|
1331
|
+
},
|
|
1332
|
+
},
|
|
1333
|
+
],
|
|
1334
|
+
},
|
|
1335
|
+
{
|
|
1336
|
+
type: 'text',
|
|
1337
|
+
text: ' 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 (',
|
|
1338
|
+
attrs: {
|
|
1339
|
+
start: 136,
|
|
1340
|
+
end: 531,
|
|
1341
|
+
},
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
type: 'text',
|
|
1345
|
+
text: '’gyur byang',
|
|
1346
|
+
attrs: {
|
|
1347
|
+
start: 531,
|
|
1348
|
+
end: 542,
|
|
1349
|
+
},
|
|
1350
|
+
marks: [
|
|
1351
|
+
{
|
|
1352
|
+
type: 'italic',
|
|
1353
|
+
attrs: {
|
|
1354
|
+
start: 531,
|
|
1355
|
+
end: 542,
|
|
1356
|
+
uuid: '88bd7213-631f-418d-9048-62d1cf657acd',
|
|
1357
|
+
type: 'span',
|
|
1358
|
+
lang: 'Bo-Ltn',
|
|
1359
|
+
textStyle: 'foreign',
|
|
1360
|
+
},
|
|
1361
|
+
},
|
|
1362
|
+
],
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
type: 'text',
|
|
1366
|
+
text: '). The sūtra is listed in both the Denkarma',
|
|
1367
|
+
attrs: {
|
|
1368
|
+
start: 542,
|
|
1369
|
+
end: 585,
|
|
1370
|
+
},
|
|
1371
|
+
marks: [
|
|
1372
|
+
{
|
|
1373
|
+
type: 'endNoteLink',
|
|
1374
|
+
attrs: {
|
|
1375
|
+
notes: [
|
|
1376
|
+
{
|
|
1377
|
+
endNote: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
|
|
1378
|
+
label: '8',
|
|
1379
|
+
uuid: 'afb666ac-6ddc-40ad-b566-750d112ecf8a',
|
|
1380
|
+
start: 585,
|
|
1381
|
+
end: 585,
|
|
1382
|
+
location: 'end',
|
|
1383
|
+
},
|
|
1384
|
+
],
|
|
1385
|
+
},
|
|
1386
|
+
},
|
|
1387
|
+
],
|
|
1388
|
+
},
|
|
1389
|
+
{
|
|
1390
|
+
type: 'text',
|
|
1391
|
+
text: ' and Phangthangma',
|
|
1392
|
+
attrs: {
|
|
1393
|
+
start: 585,
|
|
1394
|
+
end: 602,
|
|
1395
|
+
},
|
|
1396
|
+
marks: [
|
|
1397
|
+
{
|
|
1398
|
+
type: 'endNoteLink',
|
|
1399
|
+
attrs: {
|
|
1400
|
+
notes: [
|
|
1401
|
+
{
|
|
1402
|
+
endNote: '23afe851-d528-4bf8-8776-012cf2dc192c',
|
|
1403
|
+
label: '9',
|
|
1404
|
+
uuid: '492760ba-0dfd-4805-b3db-65fb2d246267',
|
|
1405
|
+
start: 602,
|
|
1406
|
+
end: 602,
|
|
1407
|
+
location: 'end',
|
|
1408
|
+
},
|
|
1409
|
+
],
|
|
1410
|
+
},
|
|
1411
|
+
},
|
|
1412
|
+
],
|
|
1413
|
+
},
|
|
1414
|
+
{
|
|
1415
|
+
type: 'text',
|
|
1416
|
+
text: ' catalogs of translated works, indicating that the first Tibetan translation of the text was complete by the early ninth century.',
|
|
1417
|
+
attrs: {
|
|
1418
|
+
start: 602,
|
|
1419
|
+
end: 731,
|
|
1420
|
+
},
|
|
1421
|
+
},
|
|
1422
|
+
],
|
|
1423
|
+
},
|
|
1424
|
+
],
|
|
1425
|
+
},
|
|
1426
|
+
{
|
|
1427
|
+
type: 'passage',
|
|
1428
|
+
attrs: {
|
|
1429
|
+
uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
|
|
1430
|
+
sort: 107,
|
|
1431
|
+
type: 'introduction',
|
|
1432
|
+
label: 'i.7',
|
|
1433
|
+
alignments: {},
|
|
1434
|
+
},
|
|
1435
|
+
content: [
|
|
1436
|
+
{
|
|
1437
|
+
type: 'paragraph',
|
|
1438
|
+
attrs: {
|
|
1439
|
+
start: 0,
|
|
1440
|
+
end: 428,
|
|
1441
|
+
uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
|
|
1442
|
+
},
|
|
1443
|
+
content: [
|
|
1444
|
+
{
|
|
1445
|
+
type: 'text',
|
|
1446
|
+
text: 'There is a short commentary on this sūtra attributed to Vasubandhu and preserved in Tibetan in the Tengyur, (*',
|
|
1447
|
+
attrs: {
|
|
1448
|
+
start: 0,
|
|
1449
|
+
end: 110,
|
|
1450
|
+
},
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
type: 'text',
|
|
1454
|
+
text: 'Āryacaturdharmakavyākhyāna,',
|
|
1455
|
+
attrs: {
|
|
1456
|
+
start: 110,
|
|
1457
|
+
end: 140,
|
|
1458
|
+
},
|
|
1459
|
+
marks: [
|
|
1460
|
+
{
|
|
1461
|
+
type: 'italic',
|
|
1462
|
+
attrs: {
|
|
1463
|
+
uuid: '98855691-6c0e-4f05-bf37-d34e9d0179ca',
|
|
1464
|
+
lang: 'Sa-Ltn',
|
|
1465
|
+
type: 'inlineTitle',
|
|
1466
|
+
},
|
|
1467
|
+
},
|
|
1468
|
+
],
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
type: 'text',
|
|
1472
|
+
text: ' ',
|
|
1473
|
+
attrs: {
|
|
1474
|
+
start: 140,
|
|
1475
|
+
end: 141,
|
|
1476
|
+
},
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
type: 'text',
|
|
1480
|
+
text: '’phags pa chos bzhi pa’i rnam par bshad pa,',
|
|
1481
|
+
attrs: {
|
|
1482
|
+
start: 141,
|
|
1483
|
+
end: 184,
|
|
1484
|
+
},
|
|
1485
|
+
marks: [
|
|
1486
|
+
{
|
|
1487
|
+
type: 'italic',
|
|
1488
|
+
attrs: {
|
|
1489
|
+
uuid: 'dfde321b-1f10-401e-b2b5-7676b788a04b',
|
|
1490
|
+
lang: 'Bo-Ltn',
|
|
1491
|
+
type: 'inlineTitle',
|
|
1492
|
+
},
|
|
1493
|
+
},
|
|
1494
|
+
],
|
|
1495
|
+
},
|
|
1496
|
+
{
|
|
1497
|
+
type: 'text',
|
|
1498
|
+
text: ' Toh 3990), which we have also translated,',
|
|
1499
|
+
attrs: {
|
|
1500
|
+
start: 184,
|
|
1501
|
+
end: 226,
|
|
1502
|
+
},
|
|
1503
|
+
marks: [
|
|
1504
|
+
{
|
|
1505
|
+
type: 'endNoteLink',
|
|
1506
|
+
attrs: {
|
|
1507
|
+
notes: [
|
|
1508
|
+
{
|
|
1509
|
+
endNote: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
|
|
1510
|
+
label: '10',
|
|
1511
|
+
uuid: '842de512-4908-4b8b-a5cd-e60d5179182a',
|
|
1512
|
+
start: 226,
|
|
1513
|
+
end: 226,
|
|
1514
|
+
location: 'end',
|
|
1515
|
+
},
|
|
1516
|
+
],
|
|
1517
|
+
},
|
|
1518
|
+
},
|
|
1519
|
+
],
|
|
1520
|
+
},
|
|
1521
|
+
{
|
|
1522
|
+
type: 'text',
|
|
1523
|
+
text: ' as well as a slightly longer commentary on this commentary, attributed to Jñānadatta (: *',
|
|
1524
|
+
attrs: {
|
|
1525
|
+
start: 226,
|
|
1526
|
+
end: 316,
|
|
1527
|
+
},
|
|
1528
|
+
},
|
|
1529
|
+
{
|
|
1530
|
+
type: 'text',
|
|
1531
|
+
text: 'Āryacaturdharmakavyākhyānaṭīkā,',
|
|
1532
|
+
attrs: {
|
|
1533
|
+
start: 316,
|
|
1534
|
+
end: 350,
|
|
1535
|
+
},
|
|
1536
|
+
marks: [
|
|
1537
|
+
{
|
|
1538
|
+
type: 'italic',
|
|
1539
|
+
attrs: {
|
|
1540
|
+
uuid: '9e0e4fba-1860-444a-8936-0830fa1c1f4d',
|
|
1541
|
+
lang: 'Sa-Ltn',
|
|
1542
|
+
type: 'inlineTitle',
|
|
1543
|
+
},
|
|
1544
|
+
},
|
|
1545
|
+
],
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
type: 'text',
|
|
1549
|
+
text: ' ',
|
|
1550
|
+
attrs: {
|
|
1551
|
+
start: 350,
|
|
1552
|
+
end: 351,
|
|
1553
|
+
},
|
|
1554
|
+
},
|
|
1555
|
+
{
|
|
1556
|
+
type: 'text',
|
|
1557
|
+
text: '’phags pa chos bzhi pa’i rgya cher bshad pa’i rgya cher ’grel pa,',
|
|
1558
|
+
attrs: {
|
|
1559
|
+
start: 351,
|
|
1560
|
+
end: 416,
|
|
1561
|
+
},
|
|
1562
|
+
marks: [
|
|
1563
|
+
{
|
|
1564
|
+
type: 'italic',
|
|
1565
|
+
attrs: {
|
|
1566
|
+
uuid: '17ed5280-b4b0-494f-9359-d0a57d0d3d87',
|
|
1567
|
+
lang: 'Bo-Ltn',
|
|
1568
|
+
type: 'inlineTitle',
|
|
1569
|
+
},
|
|
1570
|
+
},
|
|
1571
|
+
],
|
|
1572
|
+
},
|
|
1573
|
+
{
|
|
1574
|
+
type: 'text',
|
|
1575
|
+
text: ' Toh 3990a).',
|
|
1576
|
+
attrs: {
|
|
1577
|
+
start: 416,
|
|
1578
|
+
end: 428,
|
|
1579
|
+
},
|
|
1580
|
+
},
|
|
1581
|
+
],
|
|
1582
|
+
},
|
|
1583
|
+
],
|
|
1584
|
+
},
|
|
1585
|
+
{
|
|
1586
|
+
type: 'passage',
|
|
1587
|
+
attrs: {
|
|
1588
|
+
uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
|
|
1589
|
+
sort: 119,
|
|
1590
|
+
type: 'introduction',
|
|
1591
|
+
label: 'i.8',
|
|
1592
|
+
alignments: {},
|
|
1593
|
+
},
|
|
1594
|
+
content: [
|
|
1595
|
+
{
|
|
1596
|
+
type: 'paragraph',
|
|
1597
|
+
attrs: {
|
|
1598
|
+
start: 0,
|
|
1599
|
+
end: 965,
|
|
1600
|
+
uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
|
|
1601
|
+
},
|
|
1602
|
+
content: [
|
|
1603
|
+
{
|
|
1604
|
+
type: 'text',
|
|
1605
|
+
text: 'Several independent treatises found within the Tengyur also make reference to this sūtra. Śāntideva’s ',
|
|
1606
|
+
attrs: {
|
|
1607
|
+
start: 0,
|
|
1608
|
+
end: 102,
|
|
1609
|
+
},
|
|
1610
|
+
},
|
|
1611
|
+
{
|
|
1612
|
+
type: 'text',
|
|
1613
|
+
text: 'Compendium of Training ',
|
|
1614
|
+
attrs: {
|
|
1615
|
+
start: 102,
|
|
1616
|
+
end: 125,
|
|
1617
|
+
},
|
|
1618
|
+
marks: [
|
|
1619
|
+
{
|
|
1620
|
+
type: 'italic',
|
|
1621
|
+
attrs: {
|
|
1622
|
+
uuid: '45ede0d6-5ff6-4df7-8697-bb8e24d3a7a7',
|
|
1623
|
+
lang: 'en',
|
|
1624
|
+
type: 'inlineTitle',
|
|
1625
|
+
},
|
|
1626
|
+
},
|
|
1627
|
+
],
|
|
1628
|
+
},
|
|
1629
|
+
{
|
|
1630
|
+
type: 'text',
|
|
1631
|
+
text: '(',
|
|
1632
|
+
attrs: {
|
|
1633
|
+
start: 125,
|
|
1634
|
+
end: 126,
|
|
1635
|
+
},
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
type: 'text',
|
|
1639
|
+
text: 'Śikṣāsamuccaya,',
|
|
1640
|
+
attrs: {
|
|
1641
|
+
start: 126,
|
|
1642
|
+
end: 142,
|
|
1643
|
+
},
|
|
1644
|
+
marks: [
|
|
1645
|
+
{
|
|
1646
|
+
type: 'italic',
|
|
1647
|
+
attrs: {
|
|
1648
|
+
uuid: '138bd714-9fab-4834-91c2-5894d15045ba',
|
|
1649
|
+
lang: 'Sa-Ltn',
|
|
1650
|
+
type: 'inlineTitle',
|
|
1651
|
+
},
|
|
1652
|
+
},
|
|
1653
|
+
],
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
type: 'text',
|
|
1657
|
+
text: ' Toh 3940), for instance, refers to the second of the four factors when discussing the importance of the teacher.',
|
|
1658
|
+
attrs: {
|
|
1659
|
+
start: 142,
|
|
1660
|
+
end: 255,
|
|
1661
|
+
},
|
|
1662
|
+
marks: [
|
|
1663
|
+
{
|
|
1664
|
+
type: 'endNoteLink',
|
|
1665
|
+
attrs: {
|
|
1666
|
+
notes: [
|
|
1667
|
+
{
|
|
1668
|
+
endNote: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
|
|
1669
|
+
label: '11',
|
|
1670
|
+
uuid: 'ffad76a0-3a7e-43c5-829f-11205fd28814',
|
|
1671
|
+
start: 255,
|
|
1672
|
+
end: 255,
|
|
1673
|
+
location: 'end',
|
|
1674
|
+
},
|
|
1675
|
+
],
|
|
1676
|
+
},
|
|
1677
|
+
},
|
|
1678
|
+
],
|
|
1679
|
+
},
|
|
1680
|
+
{
|
|
1681
|
+
type: 'text',
|
|
1682
|
+
text: ' Prajñākaramati also cites the same line in his ',
|
|
1683
|
+
attrs: {
|
|
1684
|
+
start: 255,
|
|
1685
|
+
end: 303,
|
|
1686
|
+
},
|
|
1687
|
+
},
|
|
1688
|
+
{
|
|
1689
|
+
type: 'text',
|
|
1690
|
+
text: 'Commentary on the Difficult Points of the Bodhicaryāvatāra ',
|
|
1691
|
+
attrs: {
|
|
1692
|
+
start: 303,
|
|
1693
|
+
end: 362,
|
|
1694
|
+
},
|
|
1695
|
+
marks: [
|
|
1696
|
+
{
|
|
1697
|
+
type: 'italic',
|
|
1698
|
+
attrs: {
|
|
1699
|
+
uuid: 'a99d4133-d20f-4f79-8586-9a0ee3b5b4cf',
|
|
1700
|
+
lang: 'en',
|
|
1701
|
+
type: 'inlineTitle',
|
|
1702
|
+
},
|
|
1703
|
+
},
|
|
1704
|
+
],
|
|
1705
|
+
},
|
|
1706
|
+
{
|
|
1707
|
+
type: 'text',
|
|
1708
|
+
text: '(',
|
|
1709
|
+
attrs: {
|
|
1710
|
+
start: 362,
|
|
1711
|
+
end: 363,
|
|
1712
|
+
},
|
|
1713
|
+
},
|
|
1714
|
+
{
|
|
1715
|
+
type: 'text',
|
|
1716
|
+
text: 'Bodhicaryāvatārapañjikā;',
|
|
1717
|
+
attrs: {
|
|
1718
|
+
start: 363,
|
|
1719
|
+
end: 389,
|
|
1720
|
+
},
|
|
1721
|
+
marks: [
|
|
1722
|
+
{
|
|
1723
|
+
type: 'italic',
|
|
1724
|
+
attrs: {
|
|
1725
|
+
uuid: '11311772-fe89-4256-a95a-f51b0f8f2662',
|
|
1726
|
+
lang: 'Sa-Ltn',
|
|
1727
|
+
type: 'inlineTitle',
|
|
1728
|
+
},
|
|
1729
|
+
},
|
|
1730
|
+
],
|
|
1731
|
+
},
|
|
1732
|
+
{
|
|
1733
|
+
type: 'text',
|
|
1734
|
+
text: ' byang chub kyi spyod pa la ’jug pa’i dka’ ’grel,',
|
|
1735
|
+
attrs: {
|
|
1736
|
+
start: 389,
|
|
1737
|
+
end: 438,
|
|
1738
|
+
},
|
|
1739
|
+
marks: [
|
|
1740
|
+
{
|
|
1741
|
+
type: 'italic',
|
|
1742
|
+
attrs: {
|
|
1743
|
+
uuid: 'd717a585-33a1-4ce9-a01c-3d29dc7ad492',
|
|
1744
|
+
lang: 'Bo-Ltn',
|
|
1745
|
+
type: 'inlineTitle',
|
|
1746
|
+
},
|
|
1747
|
+
},
|
|
1748
|
+
],
|
|
1749
|
+
},
|
|
1750
|
+
{
|
|
1751
|
+
type: 'text',
|
|
1752
|
+
text: ' Toh 3872).',
|
|
1753
|
+
attrs: {
|
|
1754
|
+
start: 438,
|
|
1755
|
+
end: 449,
|
|
1756
|
+
},
|
|
1757
|
+
marks: [
|
|
1758
|
+
{
|
|
1759
|
+
type: 'endNoteLink',
|
|
1760
|
+
attrs: {
|
|
1761
|
+
notes: [
|
|
1762
|
+
{
|
|
1763
|
+
endNote: '906dc92d-3438-43a0-b368-55e6288d3608',
|
|
1764
|
+
label: '12',
|
|
1765
|
+
uuid: '95ece1d3-8650-44d4-a091-a1dee6104eea',
|
|
1766
|
+
start: 449,
|
|
1767
|
+
end: 449,
|
|
1768
|
+
location: 'end',
|
|
1769
|
+
},
|
|
1770
|
+
],
|
|
1771
|
+
},
|
|
1772
|
+
},
|
|
1773
|
+
],
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
type: 'text',
|
|
1777
|
+
text: ' Vimalamitra refers to the fourth factor on the importance of ',
|
|
1778
|
+
attrs: {
|
|
1779
|
+
start: 449,
|
|
1780
|
+
end: 511,
|
|
1781
|
+
},
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
type: 'text',
|
|
1785
|
+
text: 'dwelling in the wilderness',
|
|
1786
|
+
attrs: {
|
|
1787
|
+
start: 511,
|
|
1788
|
+
end: 537,
|
|
1789
|
+
},
|
|
1790
|
+
marks: [
|
|
1791
|
+
{
|
|
1792
|
+
type: 'glossaryInstance',
|
|
1793
|
+
attrs: {
|
|
1794
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
1795
|
+
uuid: 'f4c38243-d9ff-4836-b444-862d9c58cd71',
|
|
1796
|
+
},
|
|
1797
|
+
},
|
|
1798
|
+
],
|
|
1799
|
+
},
|
|
1800
|
+
{
|
|
1801
|
+
type: 'text',
|
|
1802
|
+
text: ' in ',
|
|
1803
|
+
attrs: {
|
|
1804
|
+
start: 537,
|
|
1805
|
+
end: 541,
|
|
1806
|
+
},
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
type: 'text',
|
|
1810
|
+
text: 'The Meaning of the Gradual Cultivation ',
|
|
1811
|
+
attrs: {
|
|
1812
|
+
start: 541,
|
|
1813
|
+
end: 580,
|
|
1814
|
+
},
|
|
1815
|
+
marks: [
|
|
1816
|
+
{
|
|
1817
|
+
type: 'italic',
|
|
1818
|
+
attrs: {
|
|
1819
|
+
uuid: 'bbc624c9-a3da-4545-baaa-755594d07db6',
|
|
1820
|
+
lang: 'en',
|
|
1821
|
+
type: 'inlineTitle',
|
|
1822
|
+
},
|
|
1823
|
+
},
|
|
1824
|
+
],
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
type: 'text',
|
|
1828
|
+
text: '(',
|
|
1829
|
+
attrs: {
|
|
1830
|
+
start: 580,
|
|
1831
|
+
end: 581,
|
|
1832
|
+
},
|
|
1833
|
+
},
|
|
1834
|
+
{
|
|
1835
|
+
type: 'text',
|
|
1836
|
+
text: 'rim gyis ’jug pa’i sgom don,',
|
|
1837
|
+
attrs: {
|
|
1838
|
+
start: 581,
|
|
1839
|
+
end: 609,
|
|
1840
|
+
},
|
|
1841
|
+
marks: [
|
|
1842
|
+
{
|
|
1843
|
+
type: 'italic',
|
|
1844
|
+
attrs: {
|
|
1845
|
+
uuid: '7bece268-7b1f-4353-b60b-4c783a40702b',
|
|
1846
|
+
lang: 'Bo-Ltn',
|
|
1847
|
+
type: 'inlineTitle',
|
|
1848
|
+
},
|
|
1849
|
+
},
|
|
1850
|
+
],
|
|
1851
|
+
},
|
|
1852
|
+
{
|
|
1853
|
+
type: 'text',
|
|
1854
|
+
text: ' Toh 3938).',
|
|
1855
|
+
attrs: {
|
|
1856
|
+
start: 609,
|
|
1857
|
+
end: 620,
|
|
1858
|
+
},
|
|
1859
|
+
marks: [
|
|
1860
|
+
{
|
|
1861
|
+
type: 'endNoteLink',
|
|
1862
|
+
attrs: {
|
|
1863
|
+
notes: [
|
|
1864
|
+
{
|
|
1865
|
+
endNote: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
|
|
1866
|
+
label: '13',
|
|
1867
|
+
uuid: 'c0b56deb-c9e9-416a-84ad-aa62d51eb92d',
|
|
1868
|
+
start: 620,
|
|
1869
|
+
end: 620,
|
|
1870
|
+
location: 'end',
|
|
1871
|
+
},
|
|
1872
|
+
],
|
|
1873
|
+
},
|
|
1874
|
+
},
|
|
1875
|
+
],
|
|
1876
|
+
},
|
|
1877
|
+
{
|
|
1878
|
+
type: 'text',
|
|
1879
|
+
text: ' 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 ',
|
|
1880
|
+
attrs: {
|
|
1881
|
+
start: 620,
|
|
1882
|
+
end: 814,
|
|
1883
|
+
},
|
|
1884
|
+
},
|
|
1885
|
+
{
|
|
1886
|
+
type: 'text',
|
|
1887
|
+
text: 'spiritual friend',
|
|
1888
|
+
attrs: {
|
|
1889
|
+
start: 814,
|
|
1890
|
+
end: 830,
|
|
1891
|
+
},
|
|
1892
|
+
marks: [
|
|
1893
|
+
{
|
|
1894
|
+
type: 'glossaryInstance',
|
|
1895
|
+
attrs: {
|
|
1896
|
+
glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
|
|
1897
|
+
uuid: 'aa4fab69-6fac-40bd-a2db-cd052289c468',
|
|
1898
|
+
},
|
|
1899
|
+
},
|
|
1900
|
+
],
|
|
1901
|
+
},
|
|
1902
|
+
{
|
|
1903
|
+
type: 'text',
|
|
1904
|
+
text: ' in the eighth chapter of ',
|
|
1905
|
+
attrs: {
|
|
1906
|
+
start: 830,
|
|
1907
|
+
end: 856,
|
|
1908
|
+
},
|
|
1909
|
+
},
|
|
1910
|
+
{
|
|
1911
|
+
type: 'text',
|
|
1912
|
+
text: 'The White Lotus Autocommentary on the Wish-Fulfilling Treasury ',
|
|
1913
|
+
attrs: {
|
|
1914
|
+
start: 856,
|
|
1915
|
+
end: 919,
|
|
1916
|
+
},
|
|
1917
|
+
marks: [
|
|
1918
|
+
{
|
|
1919
|
+
type: 'italic',
|
|
1920
|
+
attrs: {
|
|
1921
|
+
uuid: '22241133-0138-4184-b223-137bc10fa43c',
|
|
1922
|
+
lang: 'en',
|
|
1923
|
+
type: 'inlineTitle',
|
|
1924
|
+
},
|
|
1925
|
+
},
|
|
1926
|
+
],
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
type: 'text',
|
|
1930
|
+
text: '(',
|
|
1931
|
+
attrs: {
|
|
1932
|
+
start: 919,
|
|
1933
|
+
end: 920,
|
|
1934
|
+
},
|
|
1935
|
+
},
|
|
1936
|
+
{
|
|
1937
|
+
type: 'text',
|
|
1938
|
+
text: 'yid bzhin mdzod kyi ’grel pa pad ma dkar po)',
|
|
1939
|
+
attrs: {
|
|
1940
|
+
start: 920,
|
|
1941
|
+
end: 964,
|
|
1942
|
+
},
|
|
1943
|
+
marks: [
|
|
1944
|
+
{
|
|
1945
|
+
type: 'italic',
|
|
1946
|
+
attrs: {
|
|
1947
|
+
uuid: '551e09fd-991d-4d56-b35c-da2f0e31e395',
|
|
1948
|
+
lang: 'Bo-Ltn',
|
|
1949
|
+
type: 'inlineTitle',
|
|
1950
|
+
},
|
|
1951
|
+
},
|
|
1952
|
+
],
|
|
1953
|
+
},
|
|
1954
|
+
{
|
|
1955
|
+
type: 'text',
|
|
1956
|
+
text: '.',
|
|
1957
|
+
attrs: {
|
|
1958
|
+
start: 964,
|
|
1959
|
+
end: 965,
|
|
1960
|
+
},
|
|
1961
|
+
marks: [
|
|
1962
|
+
{
|
|
1963
|
+
type: 'endNoteLink',
|
|
1964
|
+
attrs: {
|
|
1965
|
+
notes: [
|
|
1966
|
+
{
|
|
1967
|
+
endNote: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
|
|
1968
|
+
label: '14',
|
|
1969
|
+
uuid: '3c71c19a-a396-424b-ad7e-3d44ff2a329c',
|
|
1970
|
+
start: 965,
|
|
1971
|
+
end: 965,
|
|
1972
|
+
location: 'end',
|
|
1973
|
+
},
|
|
1974
|
+
],
|
|
1975
|
+
},
|
|
1976
|
+
},
|
|
1977
|
+
],
|
|
1978
|
+
},
|
|
1979
|
+
],
|
|
1980
|
+
},
|
|
1981
|
+
],
|
|
1982
|
+
},
|
|
1983
|
+
{
|
|
1984
|
+
type: 'passage',
|
|
1985
|
+
attrs: {
|
|
1986
|
+
uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
|
|
1987
|
+
sort: 151,
|
|
1988
|
+
type: 'introduction',
|
|
1989
|
+
label: 'i.9',
|
|
1990
|
+
alignments: {},
|
|
1991
|
+
},
|
|
1992
|
+
content: [
|
|
1993
|
+
{
|
|
1994
|
+
type: 'paragraph',
|
|
1995
|
+
attrs: {
|
|
1996
|
+
start: 0,
|
|
1997
|
+
end: 321,
|
|
1998
|
+
uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
|
|
1999
|
+
hasLeadingSpace: true,
|
|
2000
|
+
leadingSpaceUuid: '5571fb38-1193-41c0-9741-30d9656f6726',
|
|
2001
|
+
},
|
|
2002
|
+
content: [
|
|
2003
|
+
{
|
|
2004
|
+
type: 'text',
|
|
2005
|
+
text: 'A French translation of the sūtra by Léon Feer was first published in 1866 (and reprinted in 1883).',
|
|
2006
|
+
attrs: {
|
|
2007
|
+
start: 0,
|
|
2008
|
+
end: 99,
|
|
2009
|
+
},
|
|
2010
|
+
marks: [
|
|
2011
|
+
{
|
|
2012
|
+
type: 'endNoteLink',
|
|
2013
|
+
attrs: {
|
|
2014
|
+
notes: [
|
|
2015
|
+
{
|
|
2016
|
+
endNote: 'b8f11293-b74e-4137-873e-bd826dba04e1',
|
|
2017
|
+
label: '15',
|
|
2018
|
+
uuid: '08eaa440-ef51-46f0-ac00-72bdc7de2c16',
|
|
2019
|
+
start: 99,
|
|
2020
|
+
end: 99,
|
|
2021
|
+
location: 'end',
|
|
2022
|
+
},
|
|
2023
|
+
],
|
|
2024
|
+
},
|
|
2025
|
+
},
|
|
2026
|
+
],
|
|
2027
|
+
},
|
|
2028
|
+
{
|
|
2029
|
+
type: 'text',
|
|
2030
|
+
text: ' 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 ',
|
|
2031
|
+
attrs: {
|
|
2032
|
+
start: 99,
|
|
2033
|
+
end: 263,
|
|
2034
|
+
},
|
|
2035
|
+
},
|
|
2036
|
+
{
|
|
2037
|
+
type: 'text',
|
|
2038
|
+
text: 'Questioning the Buddha: A Selection of Twenty-Five Sutras',
|
|
2039
|
+
attrs: {
|
|
2040
|
+
start: 263,
|
|
2041
|
+
end: 320,
|
|
2042
|
+
},
|
|
2043
|
+
marks: [
|
|
2044
|
+
{
|
|
2045
|
+
type: 'italic',
|
|
2046
|
+
attrs: {
|
|
2047
|
+
uuid: 'e0477a96-7bef-4e95-b84a-987f1c4f10f1',
|
|
2048
|
+
lang: 'en',
|
|
2049
|
+
type: 'inlineTitle',
|
|
2050
|
+
},
|
|
2051
|
+
},
|
|
2052
|
+
],
|
|
2053
|
+
},
|
|
2054
|
+
{
|
|
2055
|
+
type: 'text',
|
|
2056
|
+
text: '.',
|
|
2057
|
+
attrs: {
|
|
2058
|
+
start: 320,
|
|
2059
|
+
end: 321,
|
|
2060
|
+
},
|
|
2061
|
+
marks: [
|
|
2062
|
+
{
|
|
2063
|
+
type: 'endNoteLink',
|
|
2064
|
+
attrs: {
|
|
2065
|
+
notes: [
|
|
2066
|
+
{
|
|
2067
|
+
endNote: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
|
|
2068
|
+
label: '16',
|
|
2069
|
+
uuid: 'b2969d71-74b4-44b0-b42f-8637a6ccc397',
|
|
2070
|
+
start: 321,
|
|
2071
|
+
end: 321,
|
|
2072
|
+
location: 'end',
|
|
2073
|
+
},
|
|
2074
|
+
],
|
|
2075
|
+
},
|
|
2076
|
+
},
|
|
2077
|
+
],
|
|
2078
|
+
},
|
|
2079
|
+
],
|
|
2080
|
+
},
|
|
2081
|
+
],
|
|
2082
|
+
},
|
|
2083
|
+
{
|
|
2084
|
+
type: 'passage',
|
|
2085
|
+
attrs: {
|
|
2086
|
+
uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
|
|
2087
|
+
sort: 158,
|
|
2088
|
+
type: 'introduction',
|
|
2089
|
+
label: 'i.10',
|
|
2090
|
+
alignments: {},
|
|
2091
|
+
},
|
|
2092
|
+
content: [
|
|
2093
|
+
{
|
|
2094
|
+
type: 'paragraph',
|
|
2095
|
+
attrs: {
|
|
2096
|
+
start: 0,
|
|
2097
|
+
end: 238,
|
|
2098
|
+
uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
|
|
2099
|
+
},
|
|
2100
|
+
content: [
|
|
2101
|
+
{
|
|
2102
|
+
type: 'text',
|
|
2103
|
+
text: 'The following translation was made primarily on the basis of the Degé block print with reference to the Comparative Edition (',
|
|
2104
|
+
attrs: {
|
|
2105
|
+
start: 0,
|
|
2106
|
+
end: 125,
|
|
2107
|
+
},
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
type: 'text',
|
|
2111
|
+
text: 'dpe bsdur ma)',
|
|
2112
|
+
attrs: {
|
|
2113
|
+
start: 125,
|
|
2114
|
+
end: 138,
|
|
2115
|
+
},
|
|
2116
|
+
marks: [
|
|
2117
|
+
{
|
|
2118
|
+
type: 'italic',
|
|
2119
|
+
attrs: {
|
|
2120
|
+
uuid: '6292c481-c7a6-46be-907f-160f6941aedd',
|
|
2121
|
+
lang: 'Bo-Ltn',
|
|
2122
|
+
type: 'inlineTitle',
|
|
2123
|
+
},
|
|
2124
|
+
},
|
|
2125
|
+
],
|
|
2126
|
+
},
|
|
2127
|
+
{
|
|
2128
|
+
type: 'text',
|
|
2129
|
+
text: ', the Stok Palace Kangyur, IOL Tib J 69, and the commentaries ascribed to Vasubandhu and Jñānadatta.',
|
|
2130
|
+
attrs: {
|
|
2131
|
+
start: 138,
|
|
2132
|
+
end: 238,
|
|
2133
|
+
},
|
|
2134
|
+
},
|
|
2135
|
+
],
|
|
2136
|
+
},
|
|
2137
|
+
],
|
|
2138
|
+
},
|
|
2139
|
+
{
|
|
2140
|
+
type: 'passage',
|
|
2141
|
+
attrs: {
|
|
2142
|
+
uuid: '0a812d07-8fcc-41b9-9af5-96ec9bce25d5',
|
|
2143
|
+
sort: 165,
|
|
2144
|
+
type: 'translationHeader',
|
|
2145
|
+
label: '1.',
|
|
2146
|
+
alignments: {},
|
|
2147
|
+
},
|
|
2148
|
+
content: [
|
|
2149
|
+
{
|
|
2150
|
+
type: 'heading',
|
|
2151
|
+
attrs: {
|
|
2152
|
+
level: 2,
|
|
2153
|
+
start: 0,
|
|
2154
|
+
end: 15,
|
|
2155
|
+
uuid: 'c4229046-ec92-4d1e-8bd2-ac9e860d0b64',
|
|
2156
|
+
class: 'section-title',
|
|
2157
|
+
},
|
|
2158
|
+
content: [
|
|
2159
|
+
{
|
|
2160
|
+
type: 'text',
|
|
2161
|
+
text: 'The Translation',
|
|
2162
|
+
attrs: {
|
|
2163
|
+
start: 0,
|
|
2164
|
+
end: 15,
|
|
2165
|
+
},
|
|
2166
|
+
},
|
|
2167
|
+
],
|
|
2168
|
+
},
|
|
2169
|
+
],
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
type: 'passage',
|
|
2173
|
+
attrs: {
|
|
2174
|
+
uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
|
|
2175
|
+
sort: 166,
|
|
2176
|
+
type: 'translation',
|
|
2177
|
+
label: 'tr.',
|
|
2178
|
+
alignments: {
|
|
2179
|
+
toh251: {
|
|
2180
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2181
|
+
toh: 'toh251',
|
|
2182
|
+
tibetan: '༄༅༅། །རྒྱ་གར་སྐད་དུ། ཨཱརྱ་ཙ་ཏུར་དྷརྨ་ཀཾ་ནཱ་མ་མ་ཧཱ་ཡཱ་ན་སཱུ་ཏྲ། བོད་སྐད་དུ། འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ། ',
|
|
2183
|
+
folioNumber: 60,
|
|
2184
|
+
volumeNumber: 66,
|
|
2185
|
+
},
|
|
2186
|
+
},
|
|
2187
|
+
},
|
|
2188
|
+
content: [
|
|
2189
|
+
{
|
|
2190
|
+
type: 'heading',
|
|
2191
|
+
attrs: {
|
|
2192
|
+
start: 0,
|
|
2193
|
+
end: 28,
|
|
2194
|
+
uuid: '7184b36c-1264-48fe-9cbf-e36572f3e00f',
|
|
2195
|
+
level: 2,
|
|
2196
|
+
class: 'body-title-honorific',
|
|
2197
|
+
hasLeadingSpace: true,
|
|
2198
|
+
leadingSpaceUuid: 'e134c0c3-e12a-4c6f-b45c-73e3fac2770e',
|
|
2199
|
+
},
|
|
2200
|
+
content: [
|
|
2201
|
+
{
|
|
2202
|
+
type: 'text',
|
|
2203
|
+
text: 'The Noble Mahāyāna Sūtra on ',
|
|
2204
|
+
attrs: {
|
|
2205
|
+
start: 0,
|
|
2206
|
+
end: 28,
|
|
2207
|
+
},
|
|
2208
|
+
},
|
|
2209
|
+
],
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
type: 'heading',
|
|
2213
|
+
attrs: {
|
|
2214
|
+
start: 28,
|
|
2215
|
+
end: 44,
|
|
2216
|
+
uuid: 'f5580dae-b137-4614-b4d2-de23f3105982',
|
|
2217
|
+
level: 2,
|
|
2218
|
+
class: 'body-title-main',
|
|
2219
|
+
},
|
|
2220
|
+
content: [
|
|
2221
|
+
{
|
|
2222
|
+
type: 'text',
|
|
2223
|
+
text: 'The Four Factors',
|
|
2224
|
+
attrs: {
|
|
2225
|
+
start: 28,
|
|
2226
|
+
end: 44,
|
|
2227
|
+
},
|
|
2228
|
+
},
|
|
2229
|
+
],
|
|
2230
|
+
},
|
|
2231
|
+
],
|
|
2232
|
+
},
|
|
2233
|
+
{
|
|
2234
|
+
type: 'passage',
|
|
2235
|
+
attrs: {
|
|
2236
|
+
uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
|
|
2237
|
+
sort: 168,
|
|
2238
|
+
type: 'translation',
|
|
2239
|
+
label: '1.1',
|
|
2240
|
+
alignments: {
|
|
2241
|
+
toh251: {
|
|
2242
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2243
|
+
toh: 'toh251',
|
|
2244
|
+
tibetan: 'སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ། །',
|
|
2245
|
+
folioNumber: 60,
|
|
2246
|
+
volumeNumber: 66,
|
|
2247
|
+
},
|
|
2248
|
+
},
|
|
2249
|
+
},
|
|
2250
|
+
content: [
|
|
2251
|
+
{
|
|
2252
|
+
type: 'paragraph',
|
|
2253
|
+
attrs: {
|
|
2254
|
+
start: 0,
|
|
2255
|
+
end: 43,
|
|
2256
|
+
uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
|
|
2257
|
+
},
|
|
2258
|
+
content: [
|
|
2259
|
+
{
|
|
2260
|
+
type: 'text',
|
|
2261
|
+
text: 'Homage to all the buddhas and bodhisattvas!',
|
|
2262
|
+
attrs: {
|
|
2263
|
+
start: 0,
|
|
2264
|
+
end: 43,
|
|
2265
|
+
},
|
|
2266
|
+
},
|
|
2267
|
+
],
|
|
2268
|
+
},
|
|
2269
|
+
],
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
type: 'passage',
|
|
2273
|
+
attrs: {
|
|
2274
|
+
uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
|
|
2275
|
+
sort: 170,
|
|
2276
|
+
type: 'translation',
|
|
2277
|
+
label: '1.2',
|
|
2278
|
+
alignments: {
|
|
2279
|
+
toh251: {
|
|
2280
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2281
|
+
toh: 'toh251',
|
|
2282
|
+
tibetan: 'འདི་སྐད་བདག་གིས་ཐོས་པ་དུས་གཅིག་ན། \nབཅོམ་ལྡན་འདས་མཉན་ཡོད་ན་རྒྱལ་བུ་རྒྱལ་བྱེད་ཀྱི་ཚལ་མགོན་མེད་ཟས་སྦྱིན་གྱི་ཀུན་དགའ་ར་བ་ན། དགེ་སློང་སྟོང་ཉིས་བརྒྱ་ལྔ་བཅུའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་ཐབས་ཅིག་ཏུ་བཞུགས་ཏེ། བྱང་ཆུབ་སེམས་དཔའི་ཚོགས་ཆེན་པོ་དང་ཡང་ཐབས་ཅིག་གོ། །དེ་ནས་བཅོམ་\nལྡན་འདས་ཀྱིས་དགེ་སློང་རྣམས་ལ་བཀའ་སྩལ་པ། ',
|
|
2283
|
+
folioNumber: 60,
|
|
2284
|
+
volumeNumber: 66,
|
|
2285
|
+
},
|
|
2286
|
+
},
|
|
2287
|
+
},
|
|
2288
|
+
content: [
|
|
2289
|
+
{
|
|
2290
|
+
type: 'paragraph',
|
|
2291
|
+
attrs: {
|
|
2292
|
+
start: 0,
|
|
2293
|
+
end: 262,
|
|
2294
|
+
uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
|
|
2295
|
+
hasLeadingSpace: true,
|
|
2296
|
+
leadingSpaceUuid: 'c0e02497-7d8e-4150-9178-f13a2ad77d91',
|
|
2297
|
+
},
|
|
2298
|
+
content: [
|
|
2299
|
+
{
|
|
2300
|
+
type: 'text',
|
|
2301
|
+
text: 'Thus did I hear at one time. The Buddha was residing in ',
|
|
2302
|
+
attrs: {
|
|
2303
|
+
start: 0,
|
|
2304
|
+
end: 56,
|
|
2305
|
+
},
|
|
2306
|
+
},
|
|
2307
|
+
{
|
|
2308
|
+
type: 'text',
|
|
2309
|
+
text: 'Śrāvastī',
|
|
2310
|
+
attrs: {
|
|
2311
|
+
start: 56,
|
|
2312
|
+
end: 64,
|
|
2313
|
+
},
|
|
2314
|
+
marks: [
|
|
2315
|
+
{
|
|
2316
|
+
type: 'glossaryInstance',
|
|
2317
|
+
attrs: {
|
|
2318
|
+
glossary: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
|
|
2319
|
+
uuid: '48b09ede-46cf-419a-9ec8-64c4a610b456',
|
|
2320
|
+
},
|
|
2321
|
+
},
|
|
2322
|
+
],
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
type: 'text',
|
|
2326
|
+
text: ', in ',
|
|
2327
|
+
attrs: {
|
|
2328
|
+
start: 64,
|
|
2329
|
+
end: 69,
|
|
2330
|
+
},
|
|
2331
|
+
},
|
|
2332
|
+
{
|
|
2333
|
+
type: 'text',
|
|
2334
|
+
text: 'Jeta’s Grove, Anāthapiṇḍada’s park',
|
|
2335
|
+
attrs: {
|
|
2336
|
+
start: 69,
|
|
2337
|
+
end: 103,
|
|
2338
|
+
},
|
|
2339
|
+
marks: [
|
|
2340
|
+
{
|
|
2341
|
+
type: 'glossaryInstance',
|
|
2342
|
+
attrs: {
|
|
2343
|
+
glossary: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
|
|
2344
|
+
uuid: '4ebf55f0-fddd-45e6-a9af-09997c6f96f5',
|
|
2345
|
+
},
|
|
2346
|
+
},
|
|
2347
|
+
],
|
|
2348
|
+
},
|
|
2349
|
+
{
|
|
2350
|
+
type: 'text',
|
|
2351
|
+
text: ', 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:',
|
|
2352
|
+
attrs: {
|
|
2353
|
+
start: 103,
|
|
2354
|
+
end: 262,
|
|
2355
|
+
},
|
|
2356
|
+
},
|
|
2357
|
+
],
|
|
2358
|
+
},
|
|
2359
|
+
],
|
|
2360
|
+
},
|
|
2361
|
+
{
|
|
2362
|
+
type: 'passage',
|
|
2363
|
+
attrs: {
|
|
2364
|
+
uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
|
|
2365
|
+
sort: 176,
|
|
2366
|
+
type: 'translation',
|
|
2367
|
+
label: '1.3',
|
|
2368
|
+
alignments: {
|
|
2369
|
+
toh251: {
|
|
2370
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2371
|
+
toh: 'toh251',
|
|
2372
|
+
tibetan: 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཆོས་བཞི་པོ་འདི་དག་ཇི་སྲིད་འཚོའི་བར་དུ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏོང་ངོ་། །བཞི་གང་ཞེ་ན། ',
|
|
2373
|
+
folioNumber: 60,
|
|
2374
|
+
volumeNumber: 66,
|
|
2375
|
+
},
|
|
2376
|
+
},
|
|
2377
|
+
},
|
|
2378
|
+
content: [
|
|
2379
|
+
{
|
|
2380
|
+
type: 'paragraph',
|
|
2381
|
+
attrs: {
|
|
2382
|
+
start: 0,
|
|
2383
|
+
end: 147,
|
|
2384
|
+
uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
|
|
2385
|
+
},
|
|
2386
|
+
content: [
|
|
2387
|
+
{
|
|
2388
|
+
type: 'text',
|
|
2389
|
+
text: '“Monks, for as long as they live, bodhisattvas, ',
|
|
2390
|
+
attrs: {
|
|
2391
|
+
start: 0,
|
|
2392
|
+
end: 48,
|
|
2393
|
+
},
|
|
2394
|
+
},
|
|
2395
|
+
{
|
|
2396
|
+
type: 'text',
|
|
2397
|
+
text: 'great beings',
|
|
2398
|
+
attrs: {
|
|
2399
|
+
start: 48,
|
|
2400
|
+
end: 60,
|
|
2401
|
+
},
|
|
2402
|
+
marks: [
|
|
2403
|
+
{
|
|
2404
|
+
type: 'glossaryInstance',
|
|
2405
|
+
attrs: {
|
|
2406
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
2407
|
+
uuid: '73776d26-6858-413b-9d62-5ffe18a59e4c',
|
|
2408
|
+
},
|
|
2409
|
+
},
|
|
2410
|
+
],
|
|
2411
|
+
},
|
|
2412
|
+
{
|
|
2413
|
+
type: 'text',
|
|
2414
|
+
text: ', should not abandon four factors even at the cost of their lives. What are these four?',
|
|
2415
|
+
attrs: {
|
|
2416
|
+
start: 60,
|
|
2417
|
+
end: 147,
|
|
2418
|
+
},
|
|
2419
|
+
},
|
|
2420
|
+
],
|
|
2421
|
+
},
|
|
2422
|
+
],
|
|
2423
|
+
},
|
|
2424
|
+
{
|
|
2425
|
+
type: 'passage',
|
|
2426
|
+
attrs: {
|
|
2427
|
+
uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
|
|
2428
|
+
sort: 181,
|
|
2429
|
+
type: 'translation',
|
|
2430
|
+
label: '1.4',
|
|
2431
|
+
alignments: {
|
|
2432
|
+
toh251: {
|
|
2433
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2434
|
+
toh: 'toh251',
|
|
2435
|
+
tibetan: 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་\nཇི་སྲིད་འཚོའི་བར་དུ་བྱང་ཆུབ་ཀྱི་སེམས་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
|
|
2436
|
+
folioNumber: 60,
|
|
2437
|
+
volumeNumber: 66,
|
|
2438
|
+
},
|
|
2439
|
+
},
|
|
2440
|
+
},
|
|
2441
|
+
content: [
|
|
2442
|
+
{
|
|
2443
|
+
type: 'paragraph',
|
|
2444
|
+
attrs: {
|
|
2445
|
+
start: 0,
|
|
2446
|
+
end: 138,
|
|
2447
|
+
uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
|
|
2448
|
+
},
|
|
2449
|
+
content: [
|
|
2450
|
+
{
|
|
2451
|
+
type: 'text',
|
|
2452
|
+
text: '“Monks, for as long as they live, bodhisattvas, ',
|
|
2453
|
+
attrs: {
|
|
2454
|
+
start: 0,
|
|
2455
|
+
end: 48,
|
|
2456
|
+
},
|
|
2457
|
+
},
|
|
2458
|
+
{
|
|
2459
|
+
type: 'text',
|
|
2460
|
+
text: 'great beings',
|
|
2461
|
+
attrs: {
|
|
2462
|
+
start: 48,
|
|
2463
|
+
end: 60,
|
|
2464
|
+
},
|
|
2465
|
+
marks: [
|
|
2466
|
+
{
|
|
2467
|
+
type: 'glossaryInstance',
|
|
2468
|
+
attrs: {
|
|
2469
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
2470
|
+
uuid: '93fb08c3-dabb-45e3-b9d6-05d40fb8df92',
|
|
2471
|
+
},
|
|
2472
|
+
},
|
|
2473
|
+
],
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
type: 'text',
|
|
2477
|
+
text: ', should not abandon the ',
|
|
2478
|
+
attrs: {
|
|
2479
|
+
start: 60,
|
|
2480
|
+
end: 85,
|
|
2481
|
+
},
|
|
2482
|
+
},
|
|
2483
|
+
{
|
|
2484
|
+
type: 'text',
|
|
2485
|
+
text: 'thought of awakening',
|
|
2486
|
+
attrs: {
|
|
2487
|
+
start: 85,
|
|
2488
|
+
end: 105,
|
|
2489
|
+
},
|
|
2490
|
+
marks: [
|
|
2491
|
+
{
|
|
2492
|
+
type: 'glossaryInstance',
|
|
2493
|
+
attrs: {
|
|
2494
|
+
glossary: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
|
|
2495
|
+
uuid: '7cb61bc2-cf3c-4b28-a026-56062c3febce',
|
|
2496
|
+
},
|
|
2497
|
+
},
|
|
2498
|
+
],
|
|
2499
|
+
},
|
|
2500
|
+
{
|
|
2501
|
+
type: 'text',
|
|
2502
|
+
text: ' even at the cost of their lives.',
|
|
2503
|
+
attrs: {
|
|
2504
|
+
start: 105,
|
|
2505
|
+
end: 138,
|
|
2506
|
+
},
|
|
2507
|
+
},
|
|
2508
|
+
],
|
|
2509
|
+
},
|
|
2510
|
+
],
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
type: 'passage',
|
|
2514
|
+
attrs: {
|
|
2515
|
+
uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
|
|
2516
|
+
sort: 187,
|
|
2517
|
+
type: 'translation',
|
|
2518
|
+
label: '1.5',
|
|
2519
|
+
alignments: {
|
|
2520
|
+
toh251: {
|
|
2521
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2522
|
+
toh: 'toh251',
|
|
2523
|
+
tibetan: 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགེ་བའི་བཤེས་གཉེན་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
|
|
2524
|
+
folioNumber: 60,
|
|
2525
|
+
volumeNumber: 66,
|
|
2526
|
+
},
|
|
2527
|
+
},
|
|
2528
|
+
},
|
|
2529
|
+
content: [
|
|
2530
|
+
{
|
|
2531
|
+
type: 'paragraph',
|
|
2532
|
+
attrs: {
|
|
2533
|
+
start: 0,
|
|
2534
|
+
end: 134,
|
|
2535
|
+
uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
|
|
2536
|
+
},
|
|
2537
|
+
content: [
|
|
2538
|
+
{
|
|
2539
|
+
type: 'text',
|
|
2540
|
+
text: '“Monks, for as long as they live, bodhisattvas, ',
|
|
2541
|
+
attrs: {
|
|
2542
|
+
start: 0,
|
|
2543
|
+
end: 48,
|
|
2544
|
+
},
|
|
2545
|
+
},
|
|
2546
|
+
{
|
|
2547
|
+
type: 'text',
|
|
2548
|
+
text: 'great beings',
|
|
2549
|
+
attrs: {
|
|
2550
|
+
start: 48,
|
|
2551
|
+
end: 60,
|
|
2552
|
+
},
|
|
2553
|
+
marks: [
|
|
2554
|
+
{
|
|
2555
|
+
type: 'glossaryInstance',
|
|
2556
|
+
attrs: {
|
|
2557
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
2558
|
+
uuid: '1e14fa7b-adde-4991-8b26-3f4ff17ac243',
|
|
2559
|
+
},
|
|
2560
|
+
},
|
|
2561
|
+
],
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
type: 'text',
|
|
2565
|
+
text: ', should not abandon the ',
|
|
2566
|
+
attrs: {
|
|
2567
|
+
start: 60,
|
|
2568
|
+
end: 85,
|
|
2569
|
+
},
|
|
2570
|
+
},
|
|
2571
|
+
{
|
|
2572
|
+
type: 'text',
|
|
2573
|
+
text: 'spiritual friend',
|
|
2574
|
+
attrs: {
|
|
2575
|
+
start: 85,
|
|
2576
|
+
end: 101,
|
|
2577
|
+
},
|
|
2578
|
+
marks: [
|
|
2579
|
+
{
|
|
2580
|
+
type: 'glossaryInstance',
|
|
2581
|
+
attrs: {
|
|
2582
|
+
glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
|
|
2583
|
+
uuid: 'b720b5d4-3213-4638-b192-eb8e8dca8299',
|
|
2584
|
+
},
|
|
2585
|
+
},
|
|
2586
|
+
],
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
type: 'text',
|
|
2590
|
+
text: ' even at the cost of their lives.',
|
|
2591
|
+
attrs: {
|
|
2592
|
+
start: 101,
|
|
2593
|
+
end: 134,
|
|
2594
|
+
},
|
|
2595
|
+
},
|
|
2596
|
+
],
|
|
2597
|
+
},
|
|
2598
|
+
],
|
|
2599
|
+
},
|
|
2600
|
+
{
|
|
2601
|
+
type: 'passage',
|
|
2602
|
+
attrs: {
|
|
2603
|
+
uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
|
|
2604
|
+
sort: 193,
|
|
2605
|
+
type: 'translation',
|
|
2606
|
+
label: '1.6',
|
|
2607
|
+
alignments: {
|
|
2608
|
+
toh251: {
|
|
2609
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2610
|
+
toh: 'toh251',
|
|
2611
|
+
tibetan: 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་\nདཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་བཟོད་པ་དང་དེས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
|
|
2612
|
+
folioNumber: 60,
|
|
2613
|
+
volumeNumber: 66,
|
|
2614
|
+
},
|
|
2615
|
+
},
|
|
2616
|
+
},
|
|
2617
|
+
content: [
|
|
2618
|
+
{
|
|
2619
|
+
type: 'paragraph',
|
|
2620
|
+
attrs: {
|
|
2621
|
+
start: 0,
|
|
2622
|
+
end: 136,
|
|
2623
|
+
uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
|
|
2624
|
+
},
|
|
2625
|
+
content: [
|
|
2626
|
+
{
|
|
2627
|
+
type: 'text',
|
|
2628
|
+
text: '“Monks, for as long as they live, bodhisattvas, ',
|
|
2629
|
+
attrs: {
|
|
2630
|
+
start: 0,
|
|
2631
|
+
end: 48,
|
|
2632
|
+
},
|
|
2633
|
+
},
|
|
2634
|
+
{
|
|
2635
|
+
type: 'text',
|
|
2636
|
+
text: 'great beings',
|
|
2637
|
+
attrs: {
|
|
2638
|
+
start: 48,
|
|
2639
|
+
end: 60,
|
|
2640
|
+
},
|
|
2641
|
+
marks: [
|
|
2642
|
+
{
|
|
2643
|
+
type: 'glossaryInstance',
|
|
2644
|
+
attrs: {
|
|
2645
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
2646
|
+
uuid: '9be0ece5-da55-4d6d-934f-26149e9241ac',
|
|
2647
|
+
},
|
|
2648
|
+
},
|
|
2649
|
+
],
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
type: 'text',
|
|
2653
|
+
text: ', should not abandon ',
|
|
2654
|
+
attrs: {
|
|
2655
|
+
start: 60,
|
|
2656
|
+
end: 81,
|
|
2657
|
+
},
|
|
2658
|
+
},
|
|
2659
|
+
{
|
|
2660
|
+
type: 'text',
|
|
2661
|
+
text: 'tolerance',
|
|
2662
|
+
attrs: {
|
|
2663
|
+
start: 81,
|
|
2664
|
+
end: 90,
|
|
2665
|
+
},
|
|
2666
|
+
marks: [
|
|
2667
|
+
{
|
|
2668
|
+
type: 'glossaryInstance',
|
|
2669
|
+
attrs: {
|
|
2670
|
+
glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
|
|
2671
|
+
uuid: '247d0cd6-8f48-4e3d-8c70-ab5ddf7f1382',
|
|
2672
|
+
},
|
|
2673
|
+
},
|
|
2674
|
+
],
|
|
2675
|
+
},
|
|
2676
|
+
{
|
|
2677
|
+
type: 'text',
|
|
2678
|
+
text: ' and ',
|
|
2679
|
+
attrs: {
|
|
2680
|
+
start: 90,
|
|
2681
|
+
end: 95,
|
|
2682
|
+
},
|
|
2683
|
+
},
|
|
2684
|
+
{
|
|
2685
|
+
type: 'text',
|
|
2686
|
+
text: 'lenience',
|
|
2687
|
+
attrs: {
|
|
2688
|
+
start: 95,
|
|
2689
|
+
end: 103,
|
|
2690
|
+
},
|
|
2691
|
+
marks: [
|
|
2692
|
+
{
|
|
2693
|
+
type: 'glossaryInstance',
|
|
2694
|
+
attrs: {
|
|
2695
|
+
glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
|
|
2696
|
+
uuid: 'bc10971b-913a-4a6b-b0cb-888310563c90',
|
|
2697
|
+
},
|
|
2698
|
+
},
|
|
2699
|
+
],
|
|
2700
|
+
},
|
|
2701
|
+
{
|
|
2702
|
+
type: 'text',
|
|
2703
|
+
text: ' even at the cost of their lives.',
|
|
2704
|
+
attrs: {
|
|
2705
|
+
start: 103,
|
|
2706
|
+
end: 136,
|
|
2707
|
+
},
|
|
2708
|
+
marks: [
|
|
2709
|
+
{
|
|
2710
|
+
type: 'endNoteLink',
|
|
2711
|
+
attrs: {
|
|
2712
|
+
notes: [
|
|
2713
|
+
{
|
|
2714
|
+
endNote: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
|
|
2715
|
+
label: '17',
|
|
2716
|
+
uuid: 'de90ce7e-9b47-4324-ae1c-b803ee1cd28e',
|
|
2717
|
+
start: 136,
|
|
2718
|
+
end: 136,
|
|
2719
|
+
location: 'end',
|
|
2720
|
+
},
|
|
2721
|
+
],
|
|
2722
|
+
},
|
|
2723
|
+
},
|
|
2724
|
+
],
|
|
2725
|
+
},
|
|
2726
|
+
],
|
|
2727
|
+
},
|
|
2728
|
+
],
|
|
2729
|
+
},
|
|
2730
|
+
{
|
|
2731
|
+
type: 'passage',
|
|
2732
|
+
attrs: {
|
|
2733
|
+
uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
|
|
2734
|
+
sort: 202,
|
|
2735
|
+
type: 'translation',
|
|
2736
|
+
label: '1.7',
|
|
2737
|
+
alignments: {
|
|
2738
|
+
toh251: {
|
|
2739
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2740
|
+
toh: 'toh251',
|
|
2741
|
+
tibetan: 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགོན་པ་ལ་གནས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱ་སྟེ། ',
|
|
2742
|
+
folioNumber: 60,
|
|
2743
|
+
volumeNumber: 66,
|
|
2744
|
+
},
|
|
2745
|
+
},
|
|
2746
|
+
},
|
|
2747
|
+
content: [
|
|
2748
|
+
{
|
|
2749
|
+
type: 'paragraph',
|
|
2750
|
+
attrs: {
|
|
2751
|
+
start: 0,
|
|
2752
|
+
end: 140,
|
|
2753
|
+
uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
|
|
2754
|
+
},
|
|
2755
|
+
content: [
|
|
2756
|
+
{
|
|
2757
|
+
type: 'text',
|
|
2758
|
+
text: '“Monks, for as long as they live, bodhisattvas, ',
|
|
2759
|
+
attrs: {
|
|
2760
|
+
start: 0,
|
|
2761
|
+
end: 48,
|
|
2762
|
+
},
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
type: 'text',
|
|
2766
|
+
text: 'great beings',
|
|
2767
|
+
attrs: {
|
|
2768
|
+
start: 48,
|
|
2769
|
+
end: 60,
|
|
2770
|
+
},
|
|
2771
|
+
marks: [
|
|
2772
|
+
{
|
|
2773
|
+
type: 'glossaryInstance',
|
|
2774
|
+
attrs: {
|
|
2775
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
2776
|
+
uuid: '85247b59-0ae2-4dc2-8f1d-fc7d43d18e04',
|
|
2777
|
+
},
|
|
2778
|
+
},
|
|
2779
|
+
],
|
|
2780
|
+
},
|
|
2781
|
+
{
|
|
2782
|
+
type: 'text',
|
|
2783
|
+
text: ', should not abandon ',
|
|
2784
|
+
attrs: {
|
|
2785
|
+
start: 60,
|
|
2786
|
+
end: 81,
|
|
2787
|
+
},
|
|
2788
|
+
},
|
|
2789
|
+
{
|
|
2790
|
+
type: 'text',
|
|
2791
|
+
text: 'dwelling in the wilderness',
|
|
2792
|
+
attrs: {
|
|
2793
|
+
start: 81,
|
|
2794
|
+
end: 107,
|
|
2795
|
+
},
|
|
2796
|
+
marks: [
|
|
2797
|
+
{
|
|
2798
|
+
type: 'glossaryInstance',
|
|
2799
|
+
attrs: {
|
|
2800
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
2801
|
+
uuid: '9f5020c2-2a3f-4faa-8d83-e953dfb0b255',
|
|
2802
|
+
},
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
type: 'endNoteLink',
|
|
2806
|
+
attrs: {
|
|
2807
|
+
notes: [
|
|
2808
|
+
{
|
|
2809
|
+
endNote: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
|
|
2810
|
+
label: '18',
|
|
2811
|
+
uuid: 'd5f88fe6-79d7-45ed-bf99-2cbfca3bc9f3',
|
|
2812
|
+
start: 107,
|
|
2813
|
+
end: 107,
|
|
2814
|
+
location: 'end',
|
|
2815
|
+
},
|
|
2816
|
+
],
|
|
2817
|
+
},
|
|
2818
|
+
},
|
|
2819
|
+
],
|
|
2820
|
+
},
|
|
2821
|
+
{
|
|
2822
|
+
type: 'text',
|
|
2823
|
+
text: ' even at the cost of their lives.',
|
|
2824
|
+
attrs: {
|
|
2825
|
+
start: 107,
|
|
2826
|
+
end: 140,
|
|
2827
|
+
},
|
|
2828
|
+
},
|
|
2829
|
+
],
|
|
2830
|
+
},
|
|
2831
|
+
],
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
type: 'passage',
|
|
2835
|
+
attrs: {
|
|
2836
|
+
uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
|
|
2837
|
+
sort: 209,
|
|
2838
|
+
type: 'translation',
|
|
2839
|
+
label: '1.8',
|
|
2840
|
+
alignments: {
|
|
2841
|
+
toh251: {
|
|
2842
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2843
|
+
toh: 'toh251',
|
|
2844
|
+
tibetan: 'དགེ་སློང་དག་བྱང་ཆུབ་\nསེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་ཆོས་བཞི་པོ་འདི་དག་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱའོ། །',
|
|
2845
|
+
folioNumber: 60,
|
|
2846
|
+
volumeNumber: 66,
|
|
2847
|
+
},
|
|
2848
|
+
},
|
|
2849
|
+
},
|
|
2850
|
+
content: [
|
|
2851
|
+
{
|
|
2852
|
+
type: 'paragraph',
|
|
2853
|
+
attrs: {
|
|
2854
|
+
start: 0,
|
|
2855
|
+
end: 133,
|
|
2856
|
+
uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
|
|
2857
|
+
},
|
|
2858
|
+
content: [
|
|
2859
|
+
{
|
|
2860
|
+
type: 'text',
|
|
2861
|
+
text: '“Monks, for as long as they live, bodhisattvas, ',
|
|
2862
|
+
attrs: {
|
|
2863
|
+
start: 0,
|
|
2864
|
+
end: 48,
|
|
2865
|
+
},
|
|
2866
|
+
},
|
|
2867
|
+
{
|
|
2868
|
+
type: 'text',
|
|
2869
|
+
text: 'great beings',
|
|
2870
|
+
attrs: {
|
|
2871
|
+
start: 48,
|
|
2872
|
+
end: 60,
|
|
2873
|
+
},
|
|
2874
|
+
marks: [
|
|
2875
|
+
{
|
|
2876
|
+
type: 'glossaryInstance',
|
|
2877
|
+
attrs: {
|
|
2878
|
+
glossary: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
|
|
2879
|
+
uuid: 'f78b3d56-2441-426f-ae87-8285bb46c82a',
|
|
2880
|
+
},
|
|
2881
|
+
},
|
|
2882
|
+
],
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
type: 'text',
|
|
2886
|
+
text: ', should not abandon these four factors even at the cost of their lives.”',
|
|
2887
|
+
attrs: {
|
|
2888
|
+
start: 60,
|
|
2889
|
+
end: 133,
|
|
2890
|
+
},
|
|
2891
|
+
},
|
|
2892
|
+
],
|
|
2893
|
+
},
|
|
2894
|
+
],
|
|
2895
|
+
},
|
|
2896
|
+
{
|
|
2897
|
+
type: 'passage',
|
|
2898
|
+
attrs: {
|
|
2899
|
+
uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
|
|
2900
|
+
sort: 213,
|
|
2901
|
+
type: 'translation',
|
|
2902
|
+
label: '1.9',
|
|
2903
|
+
alignments: {
|
|
2904
|
+
toh251: {
|
|
2905
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2906
|
+
toh: 'toh251',
|
|
2907
|
+
tibetan: 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ཏེ། བདེ་བར་གཤེགས་པས་དེ་སྐད་གསུངས་ནས། སྟོན་པས་གཞན་ཡང་འདི་སྐད་བཀའ་སྩལ་\nཏོ། །',
|
|
2908
|
+
folioNumber: 60,
|
|
2909
|
+
volumeNumber: 66,
|
|
2910
|
+
},
|
|
2911
|
+
},
|
|
2912
|
+
},
|
|
2913
|
+
content: [
|
|
2914
|
+
{
|
|
2915
|
+
type: 'paragraph',
|
|
2916
|
+
attrs: {
|
|
2917
|
+
start: 0,
|
|
2918
|
+
end: 120,
|
|
2919
|
+
uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
|
|
2920
|
+
},
|
|
2921
|
+
content: [
|
|
2922
|
+
{
|
|
2923
|
+
type: 'text',
|
|
2924
|
+
text: 'The Blessed One spoke these words, and once the Sugata had spoken in this way, he, the Teacher, also said the following:',
|
|
2925
|
+
attrs: {
|
|
2926
|
+
start: 0,
|
|
2927
|
+
end: 120,
|
|
2928
|
+
},
|
|
2929
|
+
},
|
|
2930
|
+
],
|
|
2931
|
+
},
|
|
2932
|
+
],
|
|
2933
|
+
},
|
|
2934
|
+
{
|
|
2935
|
+
type: 'passage',
|
|
2936
|
+
attrs: {
|
|
2937
|
+
uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
|
|
2938
|
+
sort: 215,
|
|
2939
|
+
type: 'translation',
|
|
2940
|
+
label: '1.10',
|
|
2941
|
+
alignments: {
|
|
2942
|
+
toh251: {
|
|
2943
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
2944
|
+
toh: 'toh251',
|
|
2945
|
+
tibetan: 'ཐམས་ཅད་མཁྱེན་ཉིད་སེམས་ནི་མི་གཏོང་ཞིང་། །མཁས་པས་རྫོགས་པའི་བྱང་ཆུབ་སེམས་སྐྱེད་ཅིག །བཟོད་པ་དེས་པའི་སྟོབས་ལ་རབ་གནས་ཏེ། །དགེ་བའི་བཤེས་གཉེན་ཡོངས་སུ་གཏང་མི་བྱ། །',
|
|
2946
|
+
folioNumber: 60,
|
|
2947
|
+
volumeNumber: 66,
|
|
2948
|
+
},
|
|
2949
|
+
},
|
|
2950
|
+
},
|
|
2951
|
+
content: [
|
|
2952
|
+
{
|
|
2953
|
+
type: 'lineGroup',
|
|
2954
|
+
attrs: {
|
|
2955
|
+
start: 0,
|
|
2956
|
+
end: 201,
|
|
2957
|
+
uuid: '7d2b05e7-c63f-40ea-8e6b-3ccefb83c603',
|
|
2958
|
+
},
|
|
2959
|
+
content: [
|
|
2960
|
+
{
|
|
2961
|
+
type: 'line',
|
|
2962
|
+
content: [
|
|
2963
|
+
{
|
|
2964
|
+
type: 'text',
|
|
2965
|
+
text: '“Let the wise conceive the thought of perfect awakening, ',
|
|
2966
|
+
attrs: {
|
|
2967
|
+
start: 0,
|
|
2968
|
+
end: 57,
|
|
2969
|
+
},
|
|
2970
|
+
},
|
|
2971
|
+
],
|
|
2972
|
+
attrs: {
|
|
2973
|
+
start: 0,
|
|
2974
|
+
end: 57,
|
|
2975
|
+
uuid: '181a3584-20b8-4d6e-a0e5-c0ea733dbae6',
|
|
2976
|
+
},
|
|
2977
|
+
},
|
|
2978
|
+
{
|
|
2979
|
+
type: 'line',
|
|
2980
|
+
content: [
|
|
2981
|
+
{
|
|
2982
|
+
type: 'text',
|
|
2983
|
+
text: 'And not cast aside the thought of omniscience',
|
|
2984
|
+
attrs: {
|
|
2985
|
+
start: 57,
|
|
2986
|
+
end: 102,
|
|
2987
|
+
},
|
|
2988
|
+
marks: [
|
|
2989
|
+
{
|
|
2990
|
+
type: 'endNoteLink',
|
|
2991
|
+
attrs: {
|
|
2992
|
+
notes: [
|
|
2993
|
+
{
|
|
2994
|
+
endNote: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
|
|
2995
|
+
label: '19',
|
|
2996
|
+
uuid: 'bc5071aa-2099-4323-a353-6318e01de343',
|
|
2997
|
+
start: 102,
|
|
2998
|
+
end: 102,
|
|
2999
|
+
location: 'end',
|
|
3000
|
+
},
|
|
3001
|
+
],
|
|
3002
|
+
},
|
|
3003
|
+
},
|
|
3004
|
+
],
|
|
3005
|
+
},
|
|
3006
|
+
{
|
|
3007
|
+
type: 'text',
|
|
3008
|
+
text: '; ',
|
|
3009
|
+
attrs: {
|
|
3010
|
+
start: 102,
|
|
3011
|
+
end: 104,
|
|
3012
|
+
},
|
|
3013
|
+
},
|
|
3014
|
+
],
|
|
3015
|
+
attrs: {
|
|
3016
|
+
start: 57,
|
|
3017
|
+
end: 104,
|
|
3018
|
+
uuid: 'ca6b3880-1040-4920-b1ce-e80aa7e7bcd7',
|
|
3019
|
+
},
|
|
3020
|
+
},
|
|
3021
|
+
{
|
|
3022
|
+
type: 'line',
|
|
3023
|
+
content: [
|
|
3024
|
+
{
|
|
3025
|
+
type: 'text',
|
|
3026
|
+
text: 'Let them maintain the strength of ',
|
|
3027
|
+
attrs: {
|
|
3028
|
+
start: 104,
|
|
3029
|
+
end: 138,
|
|
3030
|
+
},
|
|
3031
|
+
},
|
|
3032
|
+
{
|
|
3033
|
+
type: 'text',
|
|
3034
|
+
text: 'tolerance',
|
|
3035
|
+
attrs: {
|
|
3036
|
+
start: 138,
|
|
3037
|
+
end: 147,
|
|
3038
|
+
},
|
|
3039
|
+
marks: [
|
|
3040
|
+
{
|
|
3041
|
+
type: 'glossaryInstance',
|
|
3042
|
+
attrs: {
|
|
3043
|
+
glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
|
|
3044
|
+
uuid: '79f4938e-df3c-40c8-a618-fa188a124517',
|
|
3045
|
+
},
|
|
3046
|
+
},
|
|
3047
|
+
],
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
type: 'text',
|
|
3051
|
+
text: ' and ',
|
|
3052
|
+
attrs: {
|
|
3053
|
+
start: 147,
|
|
3054
|
+
end: 152,
|
|
3055
|
+
},
|
|
3056
|
+
},
|
|
3057
|
+
{
|
|
3058
|
+
type: 'text',
|
|
3059
|
+
text: 'lenience',
|
|
3060
|
+
attrs: {
|
|
3061
|
+
start: 152,
|
|
3062
|
+
end: 160,
|
|
3063
|
+
},
|
|
3064
|
+
marks: [
|
|
3065
|
+
{
|
|
3066
|
+
type: 'glossaryInstance',
|
|
3067
|
+
attrs: {
|
|
3068
|
+
glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
|
|
3069
|
+
uuid: 'dd65abe5-d658-40d9-820d-d9c427e40f5e',
|
|
3070
|
+
},
|
|
3071
|
+
},
|
|
3072
|
+
],
|
|
3073
|
+
},
|
|
3074
|
+
{
|
|
3075
|
+
type: 'text',
|
|
3076
|
+
text: ', ',
|
|
3077
|
+
attrs: {
|
|
3078
|
+
start: 160,
|
|
3079
|
+
end: 162,
|
|
3080
|
+
},
|
|
3081
|
+
},
|
|
3082
|
+
],
|
|
3083
|
+
attrs: {
|
|
3084
|
+
start: 104,
|
|
3085
|
+
end: 162,
|
|
3086
|
+
uuid: '196aa179-8cea-4525-8a41-19eb0781312f',
|
|
3087
|
+
},
|
|
3088
|
+
},
|
|
3089
|
+
{
|
|
3090
|
+
type: 'line',
|
|
3091
|
+
content: [
|
|
3092
|
+
{
|
|
3093
|
+
type: 'text',
|
|
3094
|
+
text: 'And never forsake the ',
|
|
3095
|
+
attrs: {
|
|
3096
|
+
start: 162,
|
|
3097
|
+
end: 184,
|
|
3098
|
+
},
|
|
3099
|
+
},
|
|
3100
|
+
{
|
|
3101
|
+
type: 'text',
|
|
3102
|
+
text: 'spiritual friend',
|
|
3103
|
+
attrs: {
|
|
3104
|
+
start: 184,
|
|
3105
|
+
end: 200,
|
|
3106
|
+
},
|
|
3107
|
+
marks: [
|
|
3108
|
+
{
|
|
3109
|
+
type: 'glossaryInstance',
|
|
3110
|
+
attrs: {
|
|
3111
|
+
glossary: '4049f21f-fa6c-4180-80f5-0750c14162da',
|
|
3112
|
+
uuid: '83d1bcb5-15ed-492b-a401-d59e7a0c0ad3',
|
|
3113
|
+
},
|
|
3114
|
+
},
|
|
3115
|
+
],
|
|
3116
|
+
},
|
|
3117
|
+
{
|
|
3118
|
+
type: 'text',
|
|
3119
|
+
text: '.',
|
|
3120
|
+
attrs: {
|
|
3121
|
+
start: 200,
|
|
3122
|
+
end: 201,
|
|
3123
|
+
},
|
|
3124
|
+
},
|
|
3125
|
+
],
|
|
3126
|
+
attrs: {
|
|
3127
|
+
start: 162,
|
|
3128
|
+
end: 201,
|
|
3129
|
+
uuid: 'cf054120-9398-4855-8c62-3677041041d4',
|
|
3130
|
+
},
|
|
3131
|
+
},
|
|
3132
|
+
],
|
|
3133
|
+
},
|
|
3134
|
+
],
|
|
3135
|
+
},
|
|
3136
|
+
{
|
|
3137
|
+
type: 'passage',
|
|
3138
|
+
attrs: {
|
|
3139
|
+
uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
|
|
3140
|
+
sort: 230,
|
|
3141
|
+
type: 'translation',
|
|
3142
|
+
label: '1.11',
|
|
3143
|
+
alignments: {
|
|
3144
|
+
toh251: {
|
|
3145
|
+
folioUuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
|
|
3146
|
+
toh: 'toh251',
|
|
3147
|
+
tibetan: 'རི་དགས་རྒྱལ་པོ་བཞིན་དུ་འཇིགས་སྤངས་ཏེ། །མཁས་[F.61.a]པས་དགོན་གནས་རྟག་ཏུ་བསྟེན་པར་བྱ། །ཆོས་འདི་དག་ལ་རྟག་ཏུ་རབ་གནས་ན། །བདུད་རྣམས་བཅོམ་ནས་བྱང་ཆུབ་དེ་འཚང་རྒྱ། །',
|
|
3148
|
+
folioNumber: 60,
|
|
3149
|
+
volumeNumber: 66,
|
|
3150
|
+
},
|
|
3151
|
+
},
|
|
3152
|
+
},
|
|
3153
|
+
content: [
|
|
3154
|
+
{
|
|
3155
|
+
type: 'lineGroup',
|
|
3156
|
+
attrs: {
|
|
3157
|
+
start: 0,
|
|
3158
|
+
end: 184,
|
|
3159
|
+
uuid: 'e9eec4aa-3a9f-435b-9111-4aa27a3deb11',
|
|
3160
|
+
},
|
|
3161
|
+
content: [
|
|
3162
|
+
{
|
|
3163
|
+
type: 'line',
|
|
3164
|
+
content: [
|
|
3165
|
+
{
|
|
3166
|
+
type: 'text',
|
|
3167
|
+
text: '“If the wise, like the king of beasts, abandon fear, ',
|
|
3168
|
+
attrs: {
|
|
3169
|
+
start: 0,
|
|
3170
|
+
end: 53,
|
|
3171
|
+
},
|
|
3172
|
+
},
|
|
3173
|
+
],
|
|
3174
|
+
attrs: {
|
|
3175
|
+
start: 0,
|
|
3176
|
+
end: 53,
|
|
3177
|
+
uuid: '9b820bc7-def0-484e-bdd8-088d19e37b48',
|
|
3178
|
+
},
|
|
3179
|
+
},
|
|
3180
|
+
{
|
|
3181
|
+
type: 'line',
|
|
3182
|
+
content: [
|
|
3183
|
+
{
|
|
3184
|
+
type: 'text',
|
|
3185
|
+
text: 'Always remain ',
|
|
3186
|
+
attrs: {
|
|
3187
|
+
start: 53,
|
|
3188
|
+
end: 67,
|
|
3189
|
+
},
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
type: 'text',
|
|
3193
|
+
text: 'dwelling in the wilderness',
|
|
3194
|
+
attrs: {
|
|
3195
|
+
start: 67,
|
|
3196
|
+
end: 93,
|
|
3197
|
+
},
|
|
3198
|
+
marks: [
|
|
3199
|
+
{
|
|
3200
|
+
type: 'glossaryInstance',
|
|
3201
|
+
attrs: {
|
|
3202
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
3203
|
+
uuid: 'cc951a6e-3334-4f23-8727-8d1b9807e186',
|
|
3204
|
+
},
|
|
3205
|
+
},
|
|
3206
|
+
],
|
|
3207
|
+
},
|
|
3208
|
+
{
|
|
3209
|
+
type: 'text',
|
|
3210
|
+
text: ', ',
|
|
3211
|
+
attrs: {
|
|
3212
|
+
start: 93,
|
|
3213
|
+
end: 95,
|
|
3214
|
+
},
|
|
3215
|
+
},
|
|
3216
|
+
],
|
|
3217
|
+
attrs: {
|
|
3218
|
+
start: 53,
|
|
3219
|
+
end: 95,
|
|
3220
|
+
uuid: 'd65f874d-9d51-42f3-aa8d-60a200f566fd',
|
|
3221
|
+
},
|
|
3222
|
+
},
|
|
3223
|
+
{
|
|
3224
|
+
type: 'line',
|
|
3225
|
+
content: [
|
|
3226
|
+
{
|
|
3227
|
+
type: 'text',
|
|
3228
|
+
text: 'And constantly maintain these factors, ',
|
|
3229
|
+
attrs: {
|
|
3230
|
+
start: 95,
|
|
3231
|
+
end: 134,
|
|
3232
|
+
},
|
|
3233
|
+
},
|
|
3234
|
+
],
|
|
3235
|
+
attrs: {
|
|
3236
|
+
start: 95,
|
|
3237
|
+
end: 134,
|
|
3238
|
+
uuid: '7defb520-391b-488f-8821-ab35d7fac408',
|
|
3239
|
+
},
|
|
3240
|
+
},
|
|
3241
|
+
{
|
|
3242
|
+
type: 'line',
|
|
3243
|
+
content: [
|
|
3244
|
+
{
|
|
3245
|
+
type: 'text',
|
|
3246
|
+
text: 'They will conquer the māras and attain awakening.”',
|
|
3247
|
+
attrs: {
|
|
3248
|
+
start: 134,
|
|
3249
|
+
end: 184,
|
|
3250
|
+
},
|
|
3251
|
+
},
|
|
3252
|
+
],
|
|
3253
|
+
attrs: {
|
|
3254
|
+
start: 134,
|
|
3255
|
+
end: 184,
|
|
3256
|
+
uuid: 'e003cc18-27e1-4be5-b52d-ed4230eaf692',
|
|
3257
|
+
},
|
|
3258
|
+
},
|
|
3259
|
+
],
|
|
3260
|
+
},
|
|
3261
|
+
],
|
|
3262
|
+
},
|
|
3263
|
+
{
|
|
3264
|
+
type: 'passage',
|
|
3265
|
+
attrs: {
|
|
3266
|
+
uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
|
|
3267
|
+
sort: 241,
|
|
3268
|
+
type: 'translation',
|
|
3269
|
+
label: '1.12',
|
|
3270
|
+
alignments: {
|
|
3271
|
+
toh251: {
|
|
3272
|
+
folioUuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
|
|
3273
|
+
toh: 'toh251',
|
|
3274
|
+
tibetan: 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ནས། དགེ་སློང་དེ་དག་དང་། བྱང་ཆུབ་སེམས་དཔའ་དེ་དག་དང་། \nཐམས་ཅད་དང་ལྡན་པའི་འཁོར་དེ་དག་ཡི་རངས་ཏེ། བཅོམ་ལྡན་འདས་ཀྱིས་གསུངས་པ་ལ་མངོན་པར་བསྟོད་དོ།། །།',
|
|
3275
|
+
folioNumber: 61,
|
|
3276
|
+
volumeNumber: 66,
|
|
3277
|
+
},
|
|
3278
|
+
},
|
|
3279
|
+
},
|
|
3280
|
+
content: [
|
|
3281
|
+
{
|
|
3282
|
+
type: 'paragraph',
|
|
3283
|
+
attrs: {
|
|
3284
|
+
start: 0,
|
|
3285
|
+
end: 149,
|
|
3286
|
+
uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
|
|
3287
|
+
},
|
|
3288
|
+
content: [
|
|
3289
|
+
{
|
|
3290
|
+
type: 'text',
|
|
3291
|
+
text: '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.',
|
|
3292
|
+
attrs: {
|
|
3293
|
+
start: 0,
|
|
3294
|
+
end: 149,
|
|
3295
|
+
},
|
|
3296
|
+
},
|
|
3297
|
+
],
|
|
3298
|
+
},
|
|
3299
|
+
],
|
|
3300
|
+
},
|
|
3301
|
+
{
|
|
3302
|
+
type: 'passage',
|
|
3303
|
+
attrs: {
|
|
3304
|
+
uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
|
|
3305
|
+
sort: 243,
|
|
3306
|
+
type: 'translation',
|
|
3307
|
+
label: '1.13',
|
|
3308
|
+
alignments: {
|
|
3309
|
+
toh251: {
|
|
3310
|
+
folioUuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
|
|
3311
|
+
toh: 'toh251',
|
|
3312
|
+
tibetan: 'འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ་རྫོགས་སོ། །',
|
|
3313
|
+
folioNumber: 61,
|
|
3314
|
+
volumeNumber: 66,
|
|
3315
|
+
},
|
|
3316
|
+
},
|
|
3317
|
+
},
|
|
3318
|
+
content: [
|
|
3319
|
+
{
|
|
3320
|
+
type: 'trailer',
|
|
3321
|
+
attrs: {
|
|
3322
|
+
start: 0,
|
|
3323
|
+
end: 62,
|
|
3324
|
+
uuid: '76612414-df30-4c73-89fa-139e794a4a4d',
|
|
3325
|
+
},
|
|
3326
|
+
content: [
|
|
3327
|
+
{
|
|
3328
|
+
type: 'text',
|
|
3329
|
+
text: 'This concludes ',
|
|
3330
|
+
attrs: {
|
|
3331
|
+
start: 0,
|
|
3332
|
+
end: 15,
|
|
3333
|
+
},
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
type: 'text',
|
|
3337
|
+
text: '“The Noble Mahāyāna Sūtra on the Four Factors.”',
|
|
3338
|
+
attrs: {
|
|
3339
|
+
start: 15,
|
|
3340
|
+
end: 62,
|
|
3341
|
+
},
|
|
3342
|
+
marks: [
|
|
3343
|
+
{
|
|
3344
|
+
type: 'italic',
|
|
3345
|
+
attrs: {
|
|
3346
|
+
uuid: '895f43ec-7189-4273-b067-d557523723aa',
|
|
3347
|
+
lang: 'en',
|
|
3348
|
+
type: 'inlineTitle',
|
|
3349
|
+
},
|
|
3350
|
+
},
|
|
3351
|
+
],
|
|
3352
|
+
},
|
|
3353
|
+
],
|
|
3354
|
+
},
|
|
3355
|
+
],
|
|
3356
|
+
},
|
|
3357
|
+
{
|
|
3358
|
+
type: 'passage',
|
|
3359
|
+
attrs: {
|
|
3360
|
+
uuid: 'de4cfc5e-5984-4269-a6da-41041aebda05',
|
|
3361
|
+
sort: 246,
|
|
3362
|
+
type: 'endnotesHeader',
|
|
3363
|
+
label: 'n.',
|
|
3364
|
+
alignments: {},
|
|
3365
|
+
},
|
|
3366
|
+
content: [
|
|
3367
|
+
{
|
|
3368
|
+
type: 'heading',
|
|
3369
|
+
attrs: {
|
|
3370
|
+
level: 2,
|
|
3371
|
+
start: 0,
|
|
3372
|
+
end: 5,
|
|
3373
|
+
uuid: '7f292b93-a6d6-408a-8cc2-44eabf24b79a',
|
|
3374
|
+
class: 'section-title',
|
|
3375
|
+
},
|
|
3376
|
+
content: [
|
|
3377
|
+
{
|
|
3378
|
+
type: 'text',
|
|
3379
|
+
text: 'Notes',
|
|
3380
|
+
attrs: {
|
|
3381
|
+
start: 0,
|
|
3382
|
+
end: 5,
|
|
3383
|
+
},
|
|
3384
|
+
},
|
|
3385
|
+
],
|
|
3386
|
+
},
|
|
3387
|
+
],
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
type: 'passage',
|
|
3391
|
+
attrs: {
|
|
3392
|
+
uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
|
|
3393
|
+
sort: 248,
|
|
3394
|
+
type: 'endnotes',
|
|
3395
|
+
label: 'n.1',
|
|
3396
|
+
alignments: {},
|
|
3397
|
+
},
|
|
3398
|
+
content: [
|
|
3399
|
+
{
|
|
3400
|
+
type: 'paragraph',
|
|
3401
|
+
attrs: {
|
|
3402
|
+
start: 0,
|
|
3403
|
+
end: 126,
|
|
3404
|
+
uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
|
|
3405
|
+
},
|
|
3406
|
+
content: [
|
|
3407
|
+
{
|
|
3408
|
+
type: 'text',
|
|
3409
|
+
text: 'Pearcey, Adam. trans. (2019), ',
|
|
3410
|
+
attrs: {
|
|
3411
|
+
start: 0,
|
|
3412
|
+
end: 30,
|
|
3413
|
+
},
|
|
3414
|
+
},
|
|
3415
|
+
{
|
|
3416
|
+
type: 'text',
|
|
3417
|
+
text: 'The Sūtra Teaching the Four Factors,',
|
|
3418
|
+
attrs: {
|
|
3419
|
+
start: 30,
|
|
3420
|
+
end: 66,
|
|
3421
|
+
},
|
|
3422
|
+
marks: [
|
|
3423
|
+
{
|
|
3424
|
+
type: 'internalLink',
|
|
3425
|
+
attrs: {
|
|
3426
|
+
href: '/entity/work/c0ca609d-29b7-4fef-8ea1-8db78310f1bb',
|
|
3427
|
+
entity: 'c0ca609d-29b7-4fef-8ea1-8db78310f1bb',
|
|
3428
|
+
type: 'work',
|
|
3429
|
+
start: 30,
|
|
3430
|
+
end: 0,
|
|
3431
|
+
},
|
|
3432
|
+
},
|
|
3433
|
+
{
|
|
3434
|
+
type: 'italic',
|
|
3435
|
+
attrs: {
|
|
3436
|
+
uuid: '2cfd2746-55cd-4798-955c-95ee8a1eeaa3',
|
|
3437
|
+
lang: 'en',
|
|
3438
|
+
type: 'inlineTitle',
|
|
3439
|
+
},
|
|
3440
|
+
},
|
|
3441
|
+
],
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
type: 'text',
|
|
3445
|
+
text: ' Toh 249 (84000: Translating the Words of the Buddha, 2019).',
|
|
3446
|
+
attrs: {
|
|
3447
|
+
start: 66,
|
|
3448
|
+
end: 126,
|
|
3449
|
+
},
|
|
3450
|
+
},
|
|
3451
|
+
],
|
|
3452
|
+
},
|
|
3453
|
+
],
|
|
3454
|
+
},
|
|
3455
|
+
{
|
|
3456
|
+
type: 'passage',
|
|
3457
|
+
attrs: {
|
|
3458
|
+
uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
|
|
3459
|
+
sort: 252,
|
|
3460
|
+
type: 'endnotes',
|
|
3461
|
+
label: 'n.2',
|
|
3462
|
+
alignments: {},
|
|
3463
|
+
},
|
|
3464
|
+
content: [
|
|
3465
|
+
{
|
|
3466
|
+
type: 'paragraph',
|
|
3467
|
+
attrs: {
|
|
3468
|
+
start: 0,
|
|
3469
|
+
end: 108,
|
|
3470
|
+
uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
|
|
3471
|
+
},
|
|
3472
|
+
content: [
|
|
3473
|
+
{
|
|
3474
|
+
type: 'text',
|
|
3475
|
+
text: 'Pearcey, Adam. trans. (2023a), ',
|
|
3476
|
+
attrs: {
|
|
3477
|
+
start: 0,
|
|
3478
|
+
end: 31,
|
|
3479
|
+
},
|
|
3480
|
+
},
|
|
3481
|
+
{
|
|
3482
|
+
type: 'text',
|
|
3483
|
+
text: 'The Four Factors,',
|
|
3484
|
+
attrs: {
|
|
3485
|
+
start: 31,
|
|
3486
|
+
end: 48,
|
|
3487
|
+
},
|
|
3488
|
+
marks: [
|
|
3489
|
+
{
|
|
3490
|
+
type: 'internalLink',
|
|
3491
|
+
attrs: {
|
|
3492
|
+
href: '/entity/work/194ce59e-f1a7-48ed-a3a2-e07e3164ec71',
|
|
3493
|
+
entity: '194ce59e-f1a7-48ed-a3a2-e07e3164ec71',
|
|
3494
|
+
type: 'work',
|
|
3495
|
+
start: 31,
|
|
3496
|
+
end: 0,
|
|
3497
|
+
},
|
|
3498
|
+
},
|
|
3499
|
+
{
|
|
3500
|
+
type: 'italic',
|
|
3501
|
+
attrs: {
|
|
3502
|
+
uuid: '5fc6af77-5fd7-4671-8ebc-41f9f83713c8',
|
|
3503
|
+
lang: 'en',
|
|
3504
|
+
type: 'inlineTitle',
|
|
3505
|
+
},
|
|
3506
|
+
},
|
|
3507
|
+
],
|
|
3508
|
+
},
|
|
3509
|
+
{
|
|
3510
|
+
type: 'text',
|
|
3511
|
+
text: ' Toh 250 (84000: Translating the Words of the Buddha, 2023).',
|
|
3512
|
+
attrs: {
|
|
3513
|
+
start: 48,
|
|
3514
|
+
end: 108,
|
|
3515
|
+
},
|
|
3516
|
+
},
|
|
3517
|
+
],
|
|
3518
|
+
},
|
|
3519
|
+
],
|
|
3520
|
+
},
|
|
3521
|
+
{
|
|
3522
|
+
type: 'passage',
|
|
3523
|
+
attrs: {
|
|
3524
|
+
uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
|
|
3525
|
+
sort: 256,
|
|
3526
|
+
type: 'endnotes',
|
|
3527
|
+
label: 'n.3',
|
|
3528
|
+
alignments: {},
|
|
3529
|
+
},
|
|
3530
|
+
content: [
|
|
3531
|
+
{
|
|
3532
|
+
type: 'paragraph',
|
|
3533
|
+
attrs: {
|
|
3534
|
+
start: 0,
|
|
3535
|
+
end: 183,
|
|
3536
|
+
uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
|
|
3537
|
+
},
|
|
3538
|
+
content: [
|
|
3539
|
+
{
|
|
3540
|
+
type: 'text',
|
|
3541
|
+
text: 'Dharmachakra Translation Committee, trans., ',
|
|
3542
|
+
attrs: {
|
|
3543
|
+
start: 0,
|
|
3544
|
+
end: 44,
|
|
3545
|
+
},
|
|
3546
|
+
},
|
|
3547
|
+
{
|
|
3548
|
+
type: 'text',
|
|
3549
|
+
text: 'The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa,',
|
|
3550
|
+
attrs: {
|
|
3551
|
+
start: 44,
|
|
3552
|
+
end: 123,
|
|
3553
|
+
},
|
|
3554
|
+
marks: [
|
|
3555
|
+
{
|
|
3556
|
+
type: 'italic',
|
|
3557
|
+
attrs: {
|
|
3558
|
+
uuid: '03764b3f-fe7c-491e-87fd-49c659738c26',
|
|
3559
|
+
lang: 'en',
|
|
3560
|
+
type: 'inlineTitle',
|
|
3561
|
+
start: 44,
|
|
3562
|
+
end: 0,
|
|
3563
|
+
},
|
|
3564
|
+
},
|
|
3565
|
+
{
|
|
3566
|
+
type: 'internalLink',
|
|
3567
|
+
attrs: {
|
|
3568
|
+
href: '/entity/work/93e4b079-d91a-4928-92f2-a49ee367c0f0',
|
|
3569
|
+
entity: '93e4b079-d91a-4928-92f2-a49ee367c0f0',
|
|
3570
|
+
type: 'work',
|
|
3571
|
+
},
|
|
3572
|
+
},
|
|
3573
|
+
],
|
|
3574
|
+
},
|
|
3575
|
+
{
|
|
3576
|
+
type: 'text',
|
|
3577
|
+
text: ' Toh 248 (84000: Translating the Words of the Buddha, 2024).',
|
|
3578
|
+
attrs: {
|
|
3579
|
+
start: 123,
|
|
3580
|
+
end: 183,
|
|
3581
|
+
},
|
|
3582
|
+
},
|
|
3583
|
+
],
|
|
3584
|
+
},
|
|
3585
|
+
],
|
|
3586
|
+
},
|
|
3587
|
+
{
|
|
3588
|
+
type: 'passage',
|
|
3589
|
+
attrs: {
|
|
3590
|
+
uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
|
|
3591
|
+
sort: 260,
|
|
3592
|
+
type: 'endnotes',
|
|
3593
|
+
label: 'n.4',
|
|
3594
|
+
alignments: {},
|
|
3595
|
+
},
|
|
3596
|
+
content: [
|
|
3597
|
+
{
|
|
3598
|
+
type: 'paragraph',
|
|
3599
|
+
attrs: {
|
|
3600
|
+
start: 0,
|
|
3601
|
+
end: 132,
|
|
3602
|
+
uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
|
|
3603
|
+
},
|
|
3604
|
+
content: [
|
|
3605
|
+
{
|
|
3606
|
+
type: 'text',
|
|
3607
|
+
text: 'Dharmachakra Translation Committee, trans., ',
|
|
3608
|
+
attrs: {
|
|
3609
|
+
start: 0,
|
|
3610
|
+
end: 44,
|
|
3611
|
+
},
|
|
3612
|
+
},
|
|
3613
|
+
{
|
|
3614
|
+
type: 'text',
|
|
3615
|
+
text: 'The Fourfold Accomplishment,',
|
|
3616
|
+
attrs: {
|
|
3617
|
+
start: 44,
|
|
3618
|
+
end: 72,
|
|
3619
|
+
},
|
|
3620
|
+
marks: [
|
|
3621
|
+
{
|
|
3622
|
+
type: 'internalLink',
|
|
3623
|
+
attrs: {
|
|
3624
|
+
href: '/entity/work/42cb94e9-b9a4-4daf-ab22-c5e87da4fb68',
|
|
3625
|
+
entity: '42cb94e9-b9a4-4daf-ab22-c5e87da4fb68',
|
|
3626
|
+
type: 'work',
|
|
3627
|
+
start: 44,
|
|
3628
|
+
end: 0,
|
|
3629
|
+
},
|
|
3630
|
+
},
|
|
3631
|
+
{
|
|
3632
|
+
type: 'italic',
|
|
3633
|
+
attrs: {
|
|
3634
|
+
uuid: 'd639dd75-92fa-4eaa-90e1-ce07a4df2643',
|
|
3635
|
+
lang: 'en',
|
|
3636
|
+
type: 'inlineTitle',
|
|
3637
|
+
},
|
|
3638
|
+
},
|
|
3639
|
+
],
|
|
3640
|
+
},
|
|
3641
|
+
{
|
|
3642
|
+
type: 'text',
|
|
3643
|
+
text: ' Toh 252 (84000: Translating the Words of the Buddha, 2020).',
|
|
3644
|
+
attrs: {
|
|
3645
|
+
start: 72,
|
|
3646
|
+
end: 132,
|
|
3647
|
+
},
|
|
3648
|
+
},
|
|
3649
|
+
],
|
|
3650
|
+
},
|
|
3651
|
+
],
|
|
3652
|
+
},
|
|
3653
|
+
{
|
|
3654
|
+
type: 'passage',
|
|
3655
|
+
attrs: {
|
|
3656
|
+
uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
|
|
3657
|
+
sort: 264,
|
|
3658
|
+
type: 'endnotes',
|
|
3659
|
+
label: 'n.5',
|
|
3660
|
+
alignments: {},
|
|
3661
|
+
},
|
|
3662
|
+
content: [
|
|
3663
|
+
{
|
|
3664
|
+
type: 'paragraph',
|
|
3665
|
+
attrs: {
|
|
3666
|
+
start: 0,
|
|
3667
|
+
end: 72,
|
|
3668
|
+
uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
|
|
3669
|
+
},
|
|
3670
|
+
content: [
|
|
3671
|
+
{
|
|
3672
|
+
type: 'text',
|
|
3673
|
+
text: 'Dasheng si fa jing 大乘四法經 (',
|
|
3674
|
+
attrs: {
|
|
3675
|
+
start: 0,
|
|
3676
|
+
end: 26,
|
|
3677
|
+
},
|
|
3678
|
+
},
|
|
3679
|
+
{
|
|
3680
|
+
type: 'text',
|
|
3681
|
+
text: 'Caturdharmakasūtra',
|
|
3682
|
+
attrs: {
|
|
3683
|
+
start: 26,
|
|
3684
|
+
end: 45,
|
|
3685
|
+
},
|
|
3686
|
+
marks: [
|
|
3687
|
+
{
|
|
3688
|
+
type: 'italic',
|
|
3689
|
+
attrs: {
|
|
3690
|
+
start: 26,
|
|
3691
|
+
end: 45,
|
|
3692
|
+
uuid: '0da63d9b-3ce4-47a5-b7a2-3a65700faccc',
|
|
3693
|
+
type: 'span',
|
|
3694
|
+
lang: 'Sa-Ltn',
|
|
3695
|
+
textStyle: 'foreign',
|
|
3696
|
+
},
|
|
3697
|
+
},
|
|
3698
|
+
],
|
|
3699
|
+
},
|
|
3700
|
+
{
|
|
3701
|
+
type: 'text',
|
|
3702
|
+
text: '), Taishō 772 (',
|
|
3703
|
+
attrs: {
|
|
3704
|
+
start: 45,
|
|
3705
|
+
end: 60,
|
|
3706
|
+
},
|
|
3707
|
+
},
|
|
3708
|
+
{
|
|
3709
|
+
type: 'text',
|
|
3710
|
+
text: 'CBETA',
|
|
3711
|
+
attrs: {
|
|
3712
|
+
start: 60,
|
|
3713
|
+
end: 65,
|
|
3714
|
+
},
|
|
3715
|
+
marks: [
|
|
3716
|
+
{
|
|
3717
|
+
type: 'link',
|
|
3718
|
+
attrs: {
|
|
3719
|
+
href: 'https://cbetaonline.dila.edu.tw/en/T0772',
|
|
3720
|
+
uuid: 'c972c0f2-1273-4064-a26c-dda965b3f3ef',
|
|
3721
|
+
type: 'link',
|
|
3722
|
+
},
|
|
3723
|
+
},
|
|
3724
|
+
],
|
|
3725
|
+
},
|
|
3726
|
+
{
|
|
3727
|
+
type: 'text',
|
|
3728
|
+
text: '; ',
|
|
3729
|
+
attrs: {
|
|
3730
|
+
start: 65,
|
|
3731
|
+
end: 67,
|
|
3732
|
+
},
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
type: 'text',
|
|
3736
|
+
text: 'SAT',
|
|
3737
|
+
attrs: {
|
|
3738
|
+
start: 67,
|
|
3739
|
+
end: 70,
|
|
3740
|
+
},
|
|
3741
|
+
marks: [
|
|
3742
|
+
{
|
|
3743
|
+
type: 'link',
|
|
3744
|
+
attrs: {
|
|
3745
|
+
href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0772.html',
|
|
3746
|
+
uuid: 'c19d9278-b438-41c4-9fef-724ade24c99b',
|
|
3747
|
+
type: 'link',
|
|
3748
|
+
},
|
|
3749
|
+
},
|
|
3750
|
+
],
|
|
3751
|
+
},
|
|
3752
|
+
{
|
|
3753
|
+
type: 'text',
|
|
3754
|
+
text: ').',
|
|
3755
|
+
attrs: {
|
|
3756
|
+
start: 70,
|
|
3757
|
+
end: 72,
|
|
3758
|
+
},
|
|
3759
|
+
},
|
|
3760
|
+
],
|
|
3761
|
+
},
|
|
3762
|
+
],
|
|
3763
|
+
},
|
|
3764
|
+
{
|
|
3765
|
+
type: 'passage',
|
|
3766
|
+
attrs: {
|
|
3767
|
+
uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
|
|
3768
|
+
sort: 275,
|
|
3769
|
+
type: 'endnotes',
|
|
3770
|
+
label: 'n.6',
|
|
3771
|
+
alignments: {},
|
|
3772
|
+
},
|
|
3773
|
+
content: [
|
|
3774
|
+
{
|
|
3775
|
+
type: 'paragraph',
|
|
3776
|
+
attrs: {
|
|
3777
|
+
start: 0,
|
|
3778
|
+
end: 90,
|
|
3779
|
+
uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
|
|
3780
|
+
},
|
|
3781
|
+
content: [
|
|
3782
|
+
{
|
|
3783
|
+
type: 'text',
|
|
3784
|
+
text: 'Fo shuo pusa xiuxing si fa jing 佛說菩薩修行四法經 (',
|
|
3785
|
+
attrs: {
|
|
3786
|
+
start: 0,
|
|
3787
|
+
end: 43,
|
|
3788
|
+
},
|
|
3789
|
+
},
|
|
3790
|
+
{
|
|
3791
|
+
type: 'text',
|
|
3792
|
+
text: 'Caturdharmakasūtra',
|
|
3793
|
+
attrs: {
|
|
3794
|
+
start: 43,
|
|
3795
|
+
end: 63,
|
|
3796
|
+
},
|
|
3797
|
+
marks: [
|
|
3798
|
+
{
|
|
3799
|
+
type: 'italic',
|
|
3800
|
+
attrs: {
|
|
3801
|
+
start: 43,
|
|
3802
|
+
end: 63,
|
|
3803
|
+
uuid: '2775b577-6d79-44d6-b30e-a73e93b2b8a7',
|
|
3804
|
+
type: 'span',
|
|
3805
|
+
lang: 'Sa-Ltn',
|
|
3806
|
+
textStyle: 'foreign',
|
|
3807
|
+
},
|
|
3808
|
+
},
|
|
3809
|
+
],
|
|
3810
|
+
},
|
|
3811
|
+
{
|
|
3812
|
+
type: 'text',
|
|
3813
|
+
text: '), Taishō 773 (',
|
|
3814
|
+
attrs: {
|
|
3815
|
+
start: 63,
|
|
3816
|
+
end: 78,
|
|
3817
|
+
},
|
|
3818
|
+
},
|
|
3819
|
+
{
|
|
3820
|
+
type: 'text',
|
|
3821
|
+
text: 'CBETA',
|
|
3822
|
+
attrs: {
|
|
3823
|
+
start: 78,
|
|
3824
|
+
end: 83,
|
|
3825
|
+
},
|
|
3826
|
+
marks: [
|
|
3827
|
+
{
|
|
3828
|
+
type: 'link',
|
|
3829
|
+
attrs: {
|
|
3830
|
+
href: 'https://cbetaonline.dila.edu.tw/en/T0773',
|
|
3831
|
+
uuid: 'cd991891-b206-4212-ab0e-8109e88c9c17',
|
|
3832
|
+
type: 'link',
|
|
3833
|
+
},
|
|
3834
|
+
},
|
|
3835
|
+
],
|
|
3836
|
+
},
|
|
3837
|
+
{
|
|
3838
|
+
type: 'text',
|
|
3839
|
+
text: '; ',
|
|
3840
|
+
attrs: {
|
|
3841
|
+
start: 83,
|
|
3842
|
+
end: 85,
|
|
3843
|
+
},
|
|
3844
|
+
},
|
|
3845
|
+
{
|
|
3846
|
+
type: 'text',
|
|
3847
|
+
text: 'SAT',
|
|
3848
|
+
attrs: {
|
|
3849
|
+
start: 85,
|
|
3850
|
+
end: 88,
|
|
3851
|
+
},
|
|
3852
|
+
marks: [
|
|
3853
|
+
{
|
|
3854
|
+
type: 'link',
|
|
3855
|
+
attrs: {
|
|
3856
|
+
href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0773.html',
|
|
3857
|
+
uuid: '27cafadb-4372-449d-9982-3d804650e81c',
|
|
3858
|
+
type: 'link',
|
|
3859
|
+
},
|
|
3860
|
+
},
|
|
3861
|
+
],
|
|
3862
|
+
},
|
|
3863
|
+
{
|
|
3864
|
+
type: 'text',
|
|
3865
|
+
text: ').',
|
|
3866
|
+
attrs: {
|
|
3867
|
+
start: 88,
|
|
3868
|
+
end: 90,
|
|
3869
|
+
},
|
|
3870
|
+
},
|
|
3871
|
+
],
|
|
3872
|
+
},
|
|
3873
|
+
],
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
type: 'passage',
|
|
3877
|
+
attrs: {
|
|
3878
|
+
uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
|
|
3879
|
+
sort: 286,
|
|
3880
|
+
type: 'endnotes',
|
|
3881
|
+
label: 'n.7',
|
|
3882
|
+
alignments: {},
|
|
3883
|
+
},
|
|
3884
|
+
content: [
|
|
3885
|
+
{
|
|
3886
|
+
type: 'paragraph',
|
|
3887
|
+
attrs: {
|
|
3888
|
+
start: 0,
|
|
3889
|
+
end: 31,
|
|
3890
|
+
uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
|
|
3891
|
+
},
|
|
3892
|
+
content: [
|
|
3893
|
+
{
|
|
3894
|
+
type: 'text',
|
|
3895
|
+
text: 'See Skilling (2021), pp. 200–1.',
|
|
3896
|
+
attrs: {
|
|
3897
|
+
start: 0,
|
|
3898
|
+
end: 31,
|
|
3899
|
+
},
|
|
3900
|
+
},
|
|
3901
|
+
],
|
|
3902
|
+
},
|
|
3903
|
+
],
|
|
3904
|
+
},
|
|
3905
|
+
{
|
|
3906
|
+
type: 'passage',
|
|
3907
|
+
attrs: {
|
|
3908
|
+
uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
|
|
3909
|
+
sort: 288,
|
|
3910
|
+
type: 'endnotes',
|
|
3911
|
+
label: 'n.8',
|
|
3912
|
+
alignments: {},
|
|
3913
|
+
},
|
|
3914
|
+
content: [
|
|
3915
|
+
{
|
|
3916
|
+
type: 'paragraph',
|
|
3917
|
+
attrs: {
|
|
3918
|
+
start: 0,
|
|
3919
|
+
end: 78,
|
|
3920
|
+
uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
|
|
3921
|
+
},
|
|
3922
|
+
content: [
|
|
3923
|
+
{
|
|
3924
|
+
type: 'text',
|
|
3925
|
+
text: 'See Denkarma, F.300.a.2. See also Herrmann-Pfandt (2008), pp. 125–26, no. 238.',
|
|
3926
|
+
attrs: {
|
|
3927
|
+
start: 0,
|
|
3928
|
+
end: 78,
|
|
3929
|
+
},
|
|
3930
|
+
},
|
|
3931
|
+
],
|
|
3932
|
+
},
|
|
3933
|
+
],
|
|
3934
|
+
},
|
|
3935
|
+
{
|
|
3936
|
+
type: 'passage',
|
|
3937
|
+
attrs: {
|
|
3938
|
+
uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
|
|
3939
|
+
sort: 290,
|
|
3940
|
+
type: 'endnotes',
|
|
3941
|
+
label: 'n.9',
|
|
3942
|
+
alignments: {},
|
|
3943
|
+
},
|
|
3944
|
+
content: [
|
|
3945
|
+
{
|
|
3946
|
+
type: 'paragraph',
|
|
3947
|
+
attrs: {
|
|
3948
|
+
start: 0,
|
|
3949
|
+
end: 33,
|
|
3950
|
+
uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
|
|
3951
|
+
},
|
|
3952
|
+
content: [
|
|
3953
|
+
{
|
|
3954
|
+
type: 'text',
|
|
3955
|
+
text: 'dkar chag ’phang thang ma,',
|
|
3956
|
+
attrs: {
|
|
3957
|
+
start: 0,
|
|
3958
|
+
end: 26,
|
|
3959
|
+
},
|
|
3960
|
+
marks: [
|
|
3961
|
+
{
|
|
3962
|
+
type: 'italic',
|
|
3963
|
+
attrs: {
|
|
3964
|
+
uuid: '5761cf68-3cc7-4b50-860d-29cec085298c',
|
|
3965
|
+
lang: 'Bo-Ltn',
|
|
3966
|
+
type: 'inlineTitle',
|
|
3967
|
+
},
|
|
3968
|
+
},
|
|
3969
|
+
],
|
|
3970
|
+
},
|
|
3971
|
+
{
|
|
3972
|
+
type: 'text',
|
|
3973
|
+
text: ' p. 18.',
|
|
3974
|
+
attrs: {
|
|
3975
|
+
start: 26,
|
|
3976
|
+
end: 33,
|
|
3977
|
+
},
|
|
3978
|
+
},
|
|
3979
|
+
],
|
|
3980
|
+
},
|
|
3981
|
+
],
|
|
3982
|
+
},
|
|
3983
|
+
{
|
|
3984
|
+
type: 'passage',
|
|
3985
|
+
attrs: {
|
|
3986
|
+
uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
|
|
3987
|
+
sort: 293,
|
|
3988
|
+
type: 'endnotes',
|
|
3989
|
+
label: 'n.10',
|
|
3990
|
+
alignments: {},
|
|
3991
|
+
},
|
|
3992
|
+
content: [
|
|
3993
|
+
{
|
|
3994
|
+
type: 'paragraph',
|
|
3995
|
+
attrs: {
|
|
3996
|
+
start: 0,
|
|
3997
|
+
end: 75,
|
|
3998
|
+
uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
|
|
3999
|
+
},
|
|
4000
|
+
content: [
|
|
4001
|
+
{
|
|
4002
|
+
type: 'text',
|
|
4003
|
+
text: 'See Pearcey (2023b), ',
|
|
4004
|
+
attrs: {
|
|
4005
|
+
start: 0,
|
|
4006
|
+
end: 21,
|
|
4007
|
+
},
|
|
4008
|
+
},
|
|
4009
|
+
{
|
|
4010
|
+
type: 'text',
|
|
4011
|
+
text: 'An Explanation of The Noble Sūtra on the Four Factors.',
|
|
4012
|
+
attrs: {
|
|
4013
|
+
start: 21,
|
|
4014
|
+
end: 75,
|
|
4015
|
+
},
|
|
4016
|
+
marks: [
|
|
4017
|
+
{
|
|
4018
|
+
type: 'internalLink',
|
|
4019
|
+
attrs: {
|
|
4020
|
+
href: '/entity/work/e8ef6b9a-df09-4ebc-8760-4b1a21402e2f',
|
|
4021
|
+
entity: 'e8ef6b9a-df09-4ebc-8760-4b1a21402e2f',
|
|
4022
|
+
type: 'work',
|
|
4023
|
+
start: 21,
|
|
4024
|
+
end: 0,
|
|
4025
|
+
},
|
|
4026
|
+
},
|
|
4027
|
+
{
|
|
4028
|
+
type: 'italic',
|
|
4029
|
+
attrs: {
|
|
4030
|
+
uuid: '5d996a48-b748-422b-9f78-dea398efed1f',
|
|
4031
|
+
lang: 'en',
|
|
4032
|
+
type: 'inlineTitle',
|
|
4033
|
+
},
|
|
4034
|
+
},
|
|
4035
|
+
],
|
|
4036
|
+
},
|
|
4037
|
+
],
|
|
4038
|
+
},
|
|
4039
|
+
],
|
|
4040
|
+
},
|
|
4041
|
+
{
|
|
4042
|
+
type: 'passage',
|
|
4043
|
+
attrs: {
|
|
4044
|
+
uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
|
|
4045
|
+
sort: 297,
|
|
4046
|
+
type: 'endnotes',
|
|
4047
|
+
label: 'n.11',
|
|
4048
|
+
alignments: {},
|
|
4049
|
+
},
|
|
4050
|
+
content: [
|
|
4051
|
+
{
|
|
4052
|
+
type: 'paragraph',
|
|
4053
|
+
attrs: {
|
|
4054
|
+
start: 0,
|
|
4055
|
+
end: 98,
|
|
4056
|
+
uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
|
|
4057
|
+
},
|
|
4058
|
+
content: [
|
|
4059
|
+
{
|
|
4060
|
+
type: 'text',
|
|
4061
|
+
text: 'Śāntideva, 29a.4. Translations appear in Bendall & Rouse (1922), p. 43, and Goodman (2016), p. 44.',
|
|
4062
|
+
attrs: {
|
|
4063
|
+
start: 0,
|
|
4064
|
+
end: 98,
|
|
4065
|
+
},
|
|
4066
|
+
},
|
|
4067
|
+
],
|
|
4068
|
+
},
|
|
4069
|
+
],
|
|
4070
|
+
},
|
|
4071
|
+
{
|
|
4072
|
+
type: 'passage',
|
|
4073
|
+
attrs: {
|
|
4074
|
+
uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
|
|
4075
|
+
sort: 299,
|
|
4076
|
+
type: 'endnotes',
|
|
4077
|
+
label: 'n.12',
|
|
4078
|
+
alignments: {},
|
|
4079
|
+
},
|
|
4080
|
+
content: [
|
|
4081
|
+
{
|
|
4082
|
+
type: 'paragraph',
|
|
4083
|
+
attrs: {
|
|
4084
|
+
start: 0,
|
|
4085
|
+
end: 23,
|
|
4086
|
+
uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
|
|
4087
|
+
},
|
|
4088
|
+
content: [
|
|
4089
|
+
{
|
|
4090
|
+
type: 'text',
|
|
4091
|
+
text: 'Prajñākaramati, 107a.5.',
|
|
4092
|
+
attrs: {
|
|
4093
|
+
start: 0,
|
|
4094
|
+
end: 23,
|
|
4095
|
+
},
|
|
4096
|
+
},
|
|
4097
|
+
],
|
|
4098
|
+
},
|
|
4099
|
+
],
|
|
4100
|
+
},
|
|
4101
|
+
{
|
|
4102
|
+
type: 'passage',
|
|
4103
|
+
attrs: {
|
|
4104
|
+
uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
|
|
4105
|
+
sort: 301,
|
|
4106
|
+
type: 'endnotes',
|
|
4107
|
+
label: 'n.13',
|
|
4108
|
+
alignments: {},
|
|
4109
|
+
},
|
|
4110
|
+
content: [
|
|
4111
|
+
{
|
|
4112
|
+
type: 'paragraph',
|
|
4113
|
+
attrs: {
|
|
4114
|
+
start: 0,
|
|
4115
|
+
end: 20,
|
|
4116
|
+
uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
|
|
4117
|
+
},
|
|
4118
|
+
content: [
|
|
4119
|
+
{
|
|
4120
|
+
type: 'text',
|
|
4121
|
+
text: 'Vimalamitra, 353a.3.',
|
|
4122
|
+
attrs: {
|
|
4123
|
+
start: 0,
|
|
4124
|
+
end: 20,
|
|
4125
|
+
},
|
|
4126
|
+
},
|
|
4127
|
+
],
|
|
4128
|
+
},
|
|
4129
|
+
],
|
|
4130
|
+
},
|
|
4131
|
+
{
|
|
4132
|
+
type: 'passage',
|
|
4133
|
+
attrs: {
|
|
4134
|
+
uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
|
|
4135
|
+
sort: 303,
|
|
4136
|
+
type: 'endnotes',
|
|
4137
|
+
label: 'n.14',
|
|
4138
|
+
alignments: {},
|
|
4139
|
+
},
|
|
4140
|
+
content: [
|
|
4141
|
+
{
|
|
4142
|
+
type: 'paragraph',
|
|
4143
|
+
attrs: {
|
|
4144
|
+
start: 0,
|
|
4145
|
+
end: 44,
|
|
4146
|
+
uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
|
|
4147
|
+
},
|
|
4148
|
+
content: [
|
|
4149
|
+
{
|
|
4150
|
+
type: 'text',
|
|
4151
|
+
text: 'See Longchen Rabjam (2009), vol. 13, 249–50.',
|
|
4152
|
+
attrs: {
|
|
4153
|
+
start: 0,
|
|
4154
|
+
end: 44,
|
|
4155
|
+
},
|
|
4156
|
+
},
|
|
4157
|
+
],
|
|
4158
|
+
},
|
|
4159
|
+
],
|
|
4160
|
+
},
|
|
4161
|
+
{
|
|
4162
|
+
type: 'passage',
|
|
4163
|
+
attrs: {
|
|
4164
|
+
uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
|
|
4165
|
+
sort: 305,
|
|
4166
|
+
type: 'endnotes',
|
|
4167
|
+
label: 'n.15',
|
|
4168
|
+
alignments: {},
|
|
4169
|
+
},
|
|
4170
|
+
content: [
|
|
4171
|
+
{
|
|
4172
|
+
type: 'paragraph',
|
|
4173
|
+
attrs: {
|
|
4174
|
+
start: 0,
|
|
4175
|
+
end: 25,
|
|
4176
|
+
uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
|
|
4177
|
+
},
|
|
4178
|
+
content: [
|
|
4179
|
+
{
|
|
4180
|
+
type: 'text',
|
|
4181
|
+
text: 'Feer (1866), pp. 299–302.',
|
|
4182
|
+
attrs: {
|
|
4183
|
+
start: 0,
|
|
4184
|
+
end: 25,
|
|
4185
|
+
},
|
|
4186
|
+
},
|
|
4187
|
+
],
|
|
4188
|
+
},
|
|
4189
|
+
],
|
|
4190
|
+
},
|
|
4191
|
+
{
|
|
4192
|
+
type: 'passage',
|
|
4193
|
+
attrs: {
|
|
4194
|
+
uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
|
|
4195
|
+
sort: 307,
|
|
4196
|
+
type: 'endnotes',
|
|
4197
|
+
label: 'n.16',
|
|
4198
|
+
alignments: {},
|
|
4199
|
+
},
|
|
4200
|
+
content: [
|
|
4201
|
+
{
|
|
4202
|
+
type: 'paragraph',
|
|
4203
|
+
attrs: {
|
|
4204
|
+
start: 0,
|
|
4205
|
+
end: 29,
|
|
4206
|
+
uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
|
|
4207
|
+
},
|
|
4208
|
+
content: [
|
|
4209
|
+
{
|
|
4210
|
+
type: 'text',
|
|
4211
|
+
text: 'Skilling (2021), pp. 199–205.',
|
|
4212
|
+
attrs: {
|
|
4213
|
+
start: 0,
|
|
4214
|
+
end: 29,
|
|
4215
|
+
},
|
|
4216
|
+
},
|
|
4217
|
+
],
|
|
4218
|
+
},
|
|
4219
|
+
],
|
|
4220
|
+
},
|
|
4221
|
+
{
|
|
4222
|
+
type: 'passage',
|
|
4223
|
+
attrs: {
|
|
4224
|
+
uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
|
|
4225
|
+
sort: 309,
|
|
4226
|
+
type: 'endnotes',
|
|
4227
|
+
label: 'n.17',
|
|
4228
|
+
alignments: {},
|
|
4229
|
+
},
|
|
4230
|
+
content: [
|
|
4231
|
+
{
|
|
4232
|
+
type: 'paragraph',
|
|
4233
|
+
attrs: {
|
|
4234
|
+
start: 0,
|
|
4235
|
+
end: 252,
|
|
4236
|
+
uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
|
|
4237
|
+
},
|
|
4238
|
+
content: [
|
|
4239
|
+
{
|
|
4240
|
+
type: 'text',
|
|
4241
|
+
text: 'According to Jñānadatta’s commentary, ',
|
|
4242
|
+
attrs: {
|
|
4243
|
+
start: 0,
|
|
4244
|
+
end: 38,
|
|
4245
|
+
},
|
|
4246
|
+
},
|
|
4247
|
+
{
|
|
4248
|
+
type: 'text',
|
|
4249
|
+
text: 'tolerance',
|
|
4250
|
+
attrs: {
|
|
4251
|
+
start: 38,
|
|
4252
|
+
end: 47,
|
|
4253
|
+
},
|
|
4254
|
+
marks: [
|
|
4255
|
+
{
|
|
4256
|
+
type: 'glossaryInstance',
|
|
4257
|
+
attrs: {
|
|
4258
|
+
glossary: '3268038f-cca4-471a-94b3-13c62c85b7ca',
|
|
4259
|
+
uuid: 'b184bb78-4e5b-4fa7-bf1d-84fe80b897b1',
|
|
4260
|
+
},
|
|
4261
|
+
},
|
|
4262
|
+
],
|
|
4263
|
+
},
|
|
4264
|
+
{
|
|
4265
|
+
type: 'text',
|
|
4266
|
+
text: ' (',
|
|
4267
|
+
attrs: {
|
|
4268
|
+
start: 47,
|
|
4269
|
+
end: 49,
|
|
4270
|
+
},
|
|
4271
|
+
},
|
|
4272
|
+
{
|
|
4273
|
+
type: 'text',
|
|
4274
|
+
text: 'kṣanti',
|
|
4275
|
+
attrs: {
|
|
4276
|
+
start: 49,
|
|
4277
|
+
end: 55,
|
|
4278
|
+
},
|
|
4279
|
+
marks: [
|
|
4280
|
+
{
|
|
4281
|
+
type: 'italic',
|
|
4282
|
+
attrs: {
|
|
4283
|
+
start: 49,
|
|
4284
|
+
end: 55,
|
|
4285
|
+
uuid: '2c487496-029b-43b1-81f2-3900d58f2d37',
|
|
4286
|
+
type: 'span',
|
|
4287
|
+
lang: 'Sa-Ltn',
|
|
4288
|
+
textStyle: 'foreign',
|
|
4289
|
+
},
|
|
4290
|
+
},
|
|
4291
|
+
],
|
|
4292
|
+
},
|
|
4293
|
+
{
|
|
4294
|
+
type: 'text',
|
|
4295
|
+
text: '; ',
|
|
4296
|
+
attrs: {
|
|
4297
|
+
start: 55,
|
|
4298
|
+
end: 57,
|
|
4299
|
+
},
|
|
4300
|
+
},
|
|
4301
|
+
{
|
|
4302
|
+
type: 'text',
|
|
4303
|
+
text: 'bzod pa',
|
|
4304
|
+
attrs: {
|
|
4305
|
+
start: 57,
|
|
4306
|
+
end: 64,
|
|
4307
|
+
},
|
|
4308
|
+
marks: [
|
|
4309
|
+
{
|
|
4310
|
+
type: 'italic',
|
|
4311
|
+
attrs: {
|
|
4312
|
+
start: 57,
|
|
4313
|
+
end: 64,
|
|
4314
|
+
uuid: '16a0ffde-39cc-47b6-b2e7-a0a8e0ffaf08',
|
|
4315
|
+
type: 'span',
|
|
4316
|
+
lang: 'Bo-Ltn',
|
|
4317
|
+
textStyle: 'foreign',
|
|
4318
|
+
},
|
|
4319
|
+
},
|
|
4320
|
+
],
|
|
4321
|
+
},
|
|
4322
|
+
{
|
|
4323
|
+
type: 'text',
|
|
4324
|
+
text: ') means bearing the harm done to one by others (',
|
|
4325
|
+
attrs: {
|
|
4326
|
+
start: 64,
|
|
4327
|
+
end: 112,
|
|
4328
|
+
},
|
|
4329
|
+
},
|
|
4330
|
+
{
|
|
4331
|
+
type: 'text',
|
|
4332
|
+
text: 'pha rol gyi gnod pa byas pa la bzod pa',
|
|
4333
|
+
attrs: {
|
|
4334
|
+
start: 112,
|
|
4335
|
+
end: 150,
|
|
4336
|
+
},
|
|
4337
|
+
marks: [
|
|
4338
|
+
{
|
|
4339
|
+
type: 'italic',
|
|
4340
|
+
attrs: {
|
|
4341
|
+
start: 112,
|
|
4342
|
+
end: 150,
|
|
4343
|
+
uuid: '5cb8b347-3e3a-4901-8e41-127f200b8596',
|
|
4344
|
+
type: 'span',
|
|
4345
|
+
lang: 'Bo-Ltn',
|
|
4346
|
+
textStyle: 'foreign',
|
|
4347
|
+
},
|
|
4348
|
+
},
|
|
4349
|
+
],
|
|
4350
|
+
},
|
|
4351
|
+
{
|
|
4352
|
+
type: 'text',
|
|
4353
|
+
text: '), and ',
|
|
4354
|
+
attrs: {
|
|
4355
|
+
start: 150,
|
|
4356
|
+
end: 157,
|
|
4357
|
+
},
|
|
4358
|
+
},
|
|
4359
|
+
{
|
|
4360
|
+
type: 'text',
|
|
4361
|
+
text: 'lenience',
|
|
4362
|
+
attrs: {
|
|
4363
|
+
start: 157,
|
|
4364
|
+
end: 165,
|
|
4365
|
+
},
|
|
4366
|
+
marks: [
|
|
4367
|
+
{
|
|
4368
|
+
type: 'glossaryInstance',
|
|
4369
|
+
attrs: {
|
|
4370
|
+
glossary: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
|
|
4371
|
+
uuid: '98fd6e70-d5c4-4440-b9bb-5d8c42825a13',
|
|
4372
|
+
},
|
|
4373
|
+
},
|
|
4374
|
+
],
|
|
4375
|
+
},
|
|
4376
|
+
{
|
|
4377
|
+
type: 'text',
|
|
4378
|
+
text: ' (',
|
|
4379
|
+
attrs: {
|
|
4380
|
+
start: 165,
|
|
4381
|
+
end: 167,
|
|
4382
|
+
},
|
|
4383
|
+
},
|
|
4384
|
+
{
|
|
4385
|
+
type: 'text',
|
|
4386
|
+
text: 'sauratya',
|
|
4387
|
+
attrs: {
|
|
4388
|
+
start: 167,
|
|
4389
|
+
end: 175,
|
|
4390
|
+
},
|
|
4391
|
+
marks: [
|
|
4392
|
+
{
|
|
4393
|
+
type: 'italic',
|
|
4394
|
+
attrs: {
|
|
4395
|
+
start: 167,
|
|
4396
|
+
end: 175,
|
|
4397
|
+
uuid: '7d48d3fc-c8b5-4c97-9d70-d559640db6e9',
|
|
4398
|
+
type: 'span',
|
|
4399
|
+
lang: 'Sa-Ltn',
|
|
4400
|
+
textStyle: 'foreign',
|
|
4401
|
+
},
|
|
4402
|
+
},
|
|
4403
|
+
],
|
|
4404
|
+
},
|
|
4405
|
+
{
|
|
4406
|
+
type: 'text',
|
|
4407
|
+
text: '; ',
|
|
4408
|
+
attrs: {
|
|
4409
|
+
start: 175,
|
|
4410
|
+
end: 177,
|
|
4411
|
+
},
|
|
4412
|
+
},
|
|
4413
|
+
{
|
|
4414
|
+
type: 'text',
|
|
4415
|
+
text: 'des pa',
|
|
4416
|
+
attrs: {
|
|
4417
|
+
start: 177,
|
|
4418
|
+
end: 183,
|
|
4419
|
+
},
|
|
4420
|
+
marks: [
|
|
4421
|
+
{
|
|
4422
|
+
type: 'italic',
|
|
4423
|
+
attrs: {
|
|
4424
|
+
start: 177,
|
|
4425
|
+
end: 183,
|
|
4426
|
+
uuid: '356930fd-869d-4026-86cb-3cce2f500ca1',
|
|
4427
|
+
type: 'span',
|
|
4428
|
+
lang: 'Bo-Ltn',
|
|
4429
|
+
textStyle: 'foreign',
|
|
4430
|
+
},
|
|
4431
|
+
},
|
|
4432
|
+
],
|
|
4433
|
+
},
|
|
4434
|
+
{
|
|
4435
|
+
type: 'text',
|
|
4436
|
+
text: ') means refraining from harming them (',
|
|
4437
|
+
attrs: {
|
|
4438
|
+
start: 183,
|
|
4439
|
+
end: 221,
|
|
4440
|
+
},
|
|
4441
|
+
},
|
|
4442
|
+
{
|
|
4443
|
+
type: 'text',
|
|
4444
|
+
text: 'pha rol la gnod pa mi byed pa',
|
|
4445
|
+
attrs: {
|
|
4446
|
+
start: 221,
|
|
4447
|
+
end: 250,
|
|
4448
|
+
},
|
|
4449
|
+
marks: [
|
|
4450
|
+
{
|
|
4451
|
+
type: 'italic',
|
|
4452
|
+
attrs: {
|
|
4453
|
+
start: 221,
|
|
4454
|
+
end: 250,
|
|
4455
|
+
uuid: 'ac2fd54f-4199-4e16-bd6e-f16fdb05e27b',
|
|
4456
|
+
type: 'span',
|
|
4457
|
+
lang: 'Bo-Ltn',
|
|
4458
|
+
textStyle: 'foreign',
|
|
4459
|
+
},
|
|
4460
|
+
},
|
|
4461
|
+
],
|
|
4462
|
+
},
|
|
4463
|
+
{
|
|
4464
|
+
type: 'text',
|
|
4465
|
+
text: ').',
|
|
4466
|
+
attrs: {
|
|
4467
|
+
start: 250,
|
|
4468
|
+
end: 252,
|
|
4469
|
+
},
|
|
4470
|
+
},
|
|
4471
|
+
],
|
|
4472
|
+
},
|
|
4473
|
+
],
|
|
4474
|
+
},
|
|
4475
|
+
{
|
|
4476
|
+
type: 'passage',
|
|
4477
|
+
attrs: {
|
|
4478
|
+
uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
|
|
4479
|
+
sort: 327,
|
|
4480
|
+
type: 'endnotes',
|
|
4481
|
+
label: 'n.18',
|
|
4482
|
+
alignments: {},
|
|
4483
|
+
},
|
|
4484
|
+
content: [
|
|
4485
|
+
{
|
|
4486
|
+
type: 'paragraph',
|
|
4487
|
+
attrs: {
|
|
4488
|
+
start: 0,
|
|
4489
|
+
end: 536,
|
|
4490
|
+
uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
|
|
4491
|
+
},
|
|
4492
|
+
content: [
|
|
4493
|
+
{
|
|
4494
|
+
type: 'text',
|
|
4495
|
+
text: 'Dwelling in the wilderness',
|
|
4496
|
+
attrs: {
|
|
4497
|
+
start: 0,
|
|
4498
|
+
end: 26,
|
|
4499
|
+
},
|
|
4500
|
+
marks: [
|
|
4501
|
+
{
|
|
4502
|
+
type: 'glossaryInstance',
|
|
4503
|
+
attrs: {
|
|
4504
|
+
glossary: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
|
|
4505
|
+
uuid: '3ea8bb1a-1077-406a-bd76-14f4499f0717',
|
|
4506
|
+
},
|
|
4507
|
+
},
|
|
4508
|
+
],
|
|
4509
|
+
},
|
|
4510
|
+
{
|
|
4511
|
+
type: 'text',
|
|
4512
|
+
text: ' is also one of the twelve ascetic practices (',
|
|
4513
|
+
attrs: {
|
|
4514
|
+
start: 26,
|
|
4515
|
+
end: 72,
|
|
4516
|
+
},
|
|
4517
|
+
},
|
|
4518
|
+
{
|
|
4519
|
+
type: 'text',
|
|
4520
|
+
text: 'dhūtaguṇa',
|
|
4521
|
+
attrs: {
|
|
4522
|
+
start: 72,
|
|
4523
|
+
end: 81,
|
|
4524
|
+
},
|
|
4525
|
+
marks: [
|
|
4526
|
+
{
|
|
4527
|
+
type: 'italic',
|
|
4528
|
+
attrs: {
|
|
4529
|
+
start: 72,
|
|
4530
|
+
end: 81,
|
|
4531
|
+
uuid: '3272a842-73c7-48d6-bc39-d063a7cbf278',
|
|
4532
|
+
type: 'span',
|
|
4533
|
+
lang: 'Sa-Ltn',
|
|
4534
|
+
textStyle: 'foreign',
|
|
4535
|
+
},
|
|
4536
|
+
},
|
|
4537
|
+
],
|
|
4538
|
+
},
|
|
4539
|
+
{
|
|
4540
|
+
type: 'text',
|
|
4541
|
+
text: '). Note that related to (and sometimes conflated with) the Sanskrit ',
|
|
4542
|
+
attrs: {
|
|
4543
|
+
start: 81,
|
|
4544
|
+
end: 149,
|
|
4545
|
+
},
|
|
4546
|
+
},
|
|
4547
|
+
{
|
|
4548
|
+
type: 'text',
|
|
4549
|
+
text: 'araṇya',
|
|
4550
|
+
attrs: {
|
|
4551
|
+
start: 149,
|
|
4552
|
+
end: 155,
|
|
4553
|
+
},
|
|
4554
|
+
marks: [
|
|
4555
|
+
{
|
|
4556
|
+
type: 'italic',
|
|
4557
|
+
attrs: {
|
|
4558
|
+
start: 149,
|
|
4559
|
+
end: 155,
|
|
4560
|
+
uuid: '2a54ebff-8aad-4e0d-a530-d8f6767e79b8',
|
|
4561
|
+
type: 'span',
|
|
4562
|
+
lang: 'Sa-Ltn',
|
|
4563
|
+
textStyle: 'foreign',
|
|
4564
|
+
},
|
|
4565
|
+
},
|
|
4566
|
+
],
|
|
4567
|
+
},
|
|
4568
|
+
{
|
|
4569
|
+
type: 'text',
|
|
4570
|
+
text: ' in the compound ',
|
|
4571
|
+
attrs: {
|
|
4572
|
+
start: 155,
|
|
4573
|
+
end: 172,
|
|
4574
|
+
},
|
|
4575
|
+
},
|
|
4576
|
+
{
|
|
4577
|
+
type: 'text',
|
|
4578
|
+
text: 'araṇyavāsa',
|
|
4579
|
+
attrs: {
|
|
4580
|
+
start: 172,
|
|
4581
|
+
end: 182,
|
|
4582
|
+
},
|
|
4583
|
+
marks: [
|
|
4584
|
+
{
|
|
4585
|
+
type: 'italic',
|
|
4586
|
+
attrs: {
|
|
4587
|
+
start: 172,
|
|
4588
|
+
end: 182,
|
|
4589
|
+
uuid: 'd837f02b-4718-41fc-9d95-a8ceb9f2854b',
|
|
4590
|
+
type: 'span',
|
|
4591
|
+
lang: 'Sa-Ltn',
|
|
4592
|
+
textStyle: 'foreign',
|
|
4593
|
+
},
|
|
4594
|
+
},
|
|
4595
|
+
],
|
|
4596
|
+
},
|
|
4597
|
+
{
|
|
4598
|
+
type: 'text',
|
|
4599
|
+
text: '—attested for ',
|
|
4600
|
+
attrs: {
|
|
4601
|
+
start: 182,
|
|
4602
|
+
end: 197,
|
|
4603
|
+
},
|
|
4604
|
+
},
|
|
4605
|
+
{
|
|
4606
|
+
type: 'text',
|
|
4607
|
+
text: 'dgon pa la gnas pa',
|
|
4608
|
+
attrs: {
|
|
4609
|
+
start: 197,
|
|
4610
|
+
end: 215,
|
|
4611
|
+
},
|
|
4612
|
+
marks: [
|
|
4613
|
+
{
|
|
4614
|
+
type: 'italic',
|
|
4615
|
+
attrs: {
|
|
4616
|
+
start: 197,
|
|
4617
|
+
end: 215,
|
|
4618
|
+
uuid: '1b620ad5-e418-4ae4-a2a6-fc1f7963649f',
|
|
4619
|
+
type: 'span',
|
|
4620
|
+
lang: 'Bo-Ltn',
|
|
4621
|
+
textStyle: 'foreign',
|
|
4622
|
+
},
|
|
4623
|
+
},
|
|
4624
|
+
],
|
|
4625
|
+
},
|
|
4626
|
+
{
|
|
4627
|
+
type: 'text',
|
|
4628
|
+
text: ' not in this text but in the Sanskrit of the ',
|
|
4629
|
+
attrs: {
|
|
4630
|
+
start: 215,
|
|
4631
|
+
end: 260,
|
|
4632
|
+
},
|
|
4633
|
+
},
|
|
4634
|
+
{
|
|
4635
|
+
type: 'text',
|
|
4636
|
+
text: 'Rāṣṭrapālaparipṛcchā ',
|
|
4637
|
+
attrs: {
|
|
4638
|
+
start: 260,
|
|
4639
|
+
end: 283,
|
|
4640
|
+
},
|
|
4641
|
+
marks: [
|
|
4642
|
+
{
|
|
4643
|
+
type: 'italic',
|
|
4644
|
+
attrs: {
|
|
4645
|
+
uuid: 'e4e17479-7e3c-4636-af88-1b2e80d42c53',
|
|
4646
|
+
lang: 'Sa-Ltn',
|
|
4647
|
+
type: 'inlineTitle',
|
|
4648
|
+
},
|
|
4649
|
+
},
|
|
4650
|
+
],
|
|
4651
|
+
},
|
|
4652
|
+
{
|
|
4653
|
+
type: 'text',
|
|
4654
|
+
text: '(Toh 62)—is another term, ',
|
|
4655
|
+
attrs: {
|
|
4656
|
+
start: 283,
|
|
4657
|
+
end: 310,
|
|
4658
|
+
},
|
|
4659
|
+
},
|
|
4660
|
+
{
|
|
4661
|
+
type: 'text',
|
|
4662
|
+
text: 'araṇa',
|
|
4663
|
+
attrs: {
|
|
4664
|
+
start: 310,
|
|
4665
|
+
end: 315,
|
|
4666
|
+
},
|
|
4667
|
+
marks: [
|
|
4668
|
+
{
|
|
4669
|
+
type: 'italic',
|
|
4670
|
+
attrs: {
|
|
4671
|
+
start: 310,
|
|
4672
|
+
end: 315,
|
|
4673
|
+
uuid: 'ea407cbe-77c5-4341-834a-0abbe5a4fc94',
|
|
4674
|
+
type: 'span',
|
|
4675
|
+
lang: 'Sa-Ltn',
|
|
4676
|
+
textStyle: 'foreign',
|
|
4677
|
+
},
|
|
4678
|
+
},
|
|
4679
|
+
],
|
|
4680
|
+
},
|
|
4681
|
+
{
|
|
4682
|
+
type: 'text',
|
|
4683
|
+
text: ', in the compound ',
|
|
4684
|
+
attrs: {
|
|
4685
|
+
start: 315,
|
|
4686
|
+
end: 333,
|
|
4687
|
+
},
|
|
4688
|
+
},
|
|
4689
|
+
{
|
|
4690
|
+
type: 'text',
|
|
4691
|
+
text: 'araṇavihāra',
|
|
4692
|
+
attrs: {
|
|
4693
|
+
start: 333,
|
|
4694
|
+
end: 345,
|
|
4695
|
+
},
|
|
4696
|
+
marks: [
|
|
4697
|
+
{
|
|
4698
|
+
type: 'italic',
|
|
4699
|
+
attrs: {
|
|
4700
|
+
start: 333,
|
|
4701
|
+
end: 345,
|
|
4702
|
+
uuid: '54764895-a14c-43a4-bad0-8796eec28c36',
|
|
4703
|
+
type: 'span',
|
|
4704
|
+
lang: 'Sa-Ltn',
|
|
4705
|
+
textStyle: 'foreign',
|
|
4706
|
+
},
|
|
4707
|
+
},
|
|
4708
|
+
],
|
|
4709
|
+
},
|
|
4710
|
+
{
|
|
4711
|
+
type: 'text',
|
|
4712
|
+
text: ', of which the Tibetan rendering is ',
|
|
4713
|
+
attrs: {
|
|
4714
|
+
start: 345,
|
|
4715
|
+
end: 381,
|
|
4716
|
+
},
|
|
4717
|
+
},
|
|
4718
|
+
{
|
|
4719
|
+
type: 'text',
|
|
4720
|
+
text: 'nyon mongs pa med par gnas pa',
|
|
4721
|
+
attrs: {
|
|
4722
|
+
start: 381,
|
|
4723
|
+
end: 410,
|
|
4724
|
+
},
|
|
4725
|
+
marks: [
|
|
4726
|
+
{
|
|
4727
|
+
type: 'italic',
|
|
4728
|
+
attrs: {
|
|
4729
|
+
start: 381,
|
|
4730
|
+
end: 410,
|
|
4731
|
+
uuid: '13da046b-591d-4293-b2c0-bc917e4d2397',
|
|
4732
|
+
type: 'span',
|
|
4733
|
+
lang: 'Bo-Ltn',
|
|
4734
|
+
textStyle: 'foreign',
|
|
4735
|
+
},
|
|
4736
|
+
},
|
|
4737
|
+
],
|
|
4738
|
+
},
|
|
4739
|
+
{
|
|
4740
|
+
type: 'text',
|
|
4741
|
+
text: ' (Mvy 6366), with the more “inner” meaning of “dwelling free of afflicted mental states.” See Edgerton s.v. ',
|
|
4742
|
+
attrs: {
|
|
4743
|
+
start: 410,
|
|
4744
|
+
end: 518,
|
|
4745
|
+
},
|
|
4746
|
+
},
|
|
4747
|
+
{
|
|
4748
|
+
type: 'text',
|
|
4749
|
+
text: 'araṇya',
|
|
4750
|
+
attrs: {
|
|
4751
|
+
start: 518,
|
|
4752
|
+
end: 524,
|
|
4753
|
+
},
|
|
4754
|
+
marks: [
|
|
4755
|
+
{
|
|
4756
|
+
type: 'italic',
|
|
4757
|
+
attrs: {
|
|
4758
|
+
start: 518,
|
|
4759
|
+
end: 524,
|
|
4760
|
+
uuid: 'e7f68c19-e746-49b5-a822-7b7a276f1fc7',
|
|
4761
|
+
type: 'span',
|
|
4762
|
+
lang: 'Sa-Ltn',
|
|
4763
|
+
textStyle: 'foreign',
|
|
4764
|
+
},
|
|
4765
|
+
},
|
|
4766
|
+
],
|
|
4767
|
+
},
|
|
4768
|
+
{
|
|
4769
|
+
type: 'text',
|
|
4770
|
+
text: ' and ',
|
|
4771
|
+
attrs: {
|
|
4772
|
+
start: 524,
|
|
4773
|
+
end: 529,
|
|
4774
|
+
},
|
|
4775
|
+
},
|
|
4776
|
+
{
|
|
4777
|
+
type: 'text',
|
|
4778
|
+
text: 'araṇya',
|
|
4779
|
+
attrs: {
|
|
4780
|
+
start: 529,
|
|
4781
|
+
end: 535,
|
|
4782
|
+
},
|
|
4783
|
+
marks: [
|
|
4784
|
+
{
|
|
4785
|
+
type: 'italic',
|
|
4786
|
+
attrs: {
|
|
4787
|
+
start: 529,
|
|
4788
|
+
end: 535,
|
|
4789
|
+
uuid: 'ece52aa1-1789-411a-9dde-e691a4208b24',
|
|
4790
|
+
type: 'span',
|
|
4791
|
+
lang: 'Sa-Ltn',
|
|
4792
|
+
textStyle: 'foreign',
|
|
4793
|
+
},
|
|
4794
|
+
},
|
|
4795
|
+
],
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
type: 'text',
|
|
4799
|
+
text: '.',
|
|
4800
|
+
attrs: {
|
|
4801
|
+
start: 535,
|
|
4802
|
+
end: 536,
|
|
4803
|
+
},
|
|
4804
|
+
},
|
|
4805
|
+
],
|
|
4806
|
+
},
|
|
4807
|
+
],
|
|
4808
|
+
},
|
|
4809
|
+
{
|
|
4810
|
+
type: 'passage',
|
|
4811
|
+
attrs: {
|
|
4812
|
+
uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
|
|
4813
|
+
sort: 350,
|
|
4814
|
+
type: 'endnotes',
|
|
4815
|
+
label: 'n.19',
|
|
4816
|
+
alignments: {},
|
|
4817
|
+
},
|
|
4818
|
+
content: [
|
|
4819
|
+
{
|
|
4820
|
+
type: 'paragraph',
|
|
4821
|
+
attrs: {
|
|
4822
|
+
start: 0,
|
|
4823
|
+
end: 144,
|
|
4824
|
+
uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
|
|
4825
|
+
},
|
|
4826
|
+
content: [
|
|
4827
|
+
{
|
|
4828
|
+
type: 'text',
|
|
4829
|
+
text: 'The translation here follows the Degé and IOL Tib J 69 editions, which have ',
|
|
4830
|
+
attrs: {
|
|
4831
|
+
start: 0,
|
|
4832
|
+
end: 76,
|
|
4833
|
+
},
|
|
4834
|
+
},
|
|
4835
|
+
{
|
|
4836
|
+
type: 'text',
|
|
4837
|
+
text: 'sems skyed cig',
|
|
4838
|
+
attrs: {
|
|
4839
|
+
start: 76,
|
|
4840
|
+
end: 90,
|
|
4841
|
+
},
|
|
4842
|
+
marks: [
|
|
4843
|
+
{
|
|
4844
|
+
type: 'italic',
|
|
4845
|
+
attrs: {
|
|
4846
|
+
start: 76,
|
|
4847
|
+
end: 90,
|
|
4848
|
+
uuid: 'd5dc508d-d3e0-4ca0-a62f-94ae47a58762',
|
|
4849
|
+
type: 'span',
|
|
4850
|
+
lang: 'Bo-Ltn',
|
|
4851
|
+
textStyle: 'foreign',
|
|
4852
|
+
},
|
|
4853
|
+
},
|
|
4854
|
+
],
|
|
4855
|
+
},
|
|
4856
|
+
{
|
|
4857
|
+
type: 'text',
|
|
4858
|
+
text: '. The Stok Palace Kangyur version reads ',
|
|
4859
|
+
attrs: {
|
|
4860
|
+
start: 90,
|
|
4861
|
+
end: 130,
|
|
4862
|
+
},
|
|
4863
|
+
},
|
|
4864
|
+
{
|
|
4865
|
+
type: 'text',
|
|
4866
|
+
text: 'sems dpa’ cig',
|
|
4867
|
+
attrs: {
|
|
4868
|
+
start: 130,
|
|
4869
|
+
end: 143,
|
|
4870
|
+
},
|
|
4871
|
+
marks: [
|
|
4872
|
+
{
|
|
4873
|
+
type: 'italic',
|
|
4874
|
+
attrs: {
|
|
4875
|
+
start: 130,
|
|
4876
|
+
end: 143,
|
|
4877
|
+
uuid: 'c3d2d6f6-ba32-419e-b089-6e79551a231b',
|
|
4878
|
+
type: 'span',
|
|
4879
|
+
lang: 'Bo-Ltn',
|
|
4880
|
+
textStyle: 'foreign',
|
|
4881
|
+
},
|
|
4882
|
+
},
|
|
4883
|
+
],
|
|
4884
|
+
},
|
|
4885
|
+
{
|
|
4886
|
+
type: 'text',
|
|
4887
|
+
text: '.',
|
|
4888
|
+
attrs: {
|
|
4889
|
+
start: 143,
|
|
4890
|
+
end: 144,
|
|
4891
|
+
},
|
|
4892
|
+
},
|
|
4893
|
+
],
|
|
4894
|
+
},
|
|
4895
|
+
],
|
|
4896
|
+
},
|
|
4897
|
+
];
|
|
4898
|
+
//# sourceMappingURL=json.js.map
|