├── .gitignore ├── LICENSE.md ├── README.md ├── Scripts Panel ├── idEndnotes__addBacklinks.jsx ├── idEndnotes__createEndnotes.jsx ├── idEndnotes__deleteAllEndnoteHyperlinksAndBacklinks.jsx ├── idEndnotes__deleteEndnote.jsx ├── idEndnotes__jumpBetweenMarkerAndNote.jsx └── lib │ ├── config.jsx │ ├── idEndnotes.jsx │ ├── idsHelper.jsx │ └── idsLog.jsx ├── docs ├── endnoteGUI.jpg ├── endnoteGUIv3.jpg ├── endnoten-Version3.html ├── endnotenskript-version3.png └── listeneigenschaften.png ├── hilfe.md └── test ├── idsTest.jsx ├── publicTestFiles ├── 01_brokenBacklink.idml ├── 01_endnoteTest.idml ├── 01_endnoteTestAnchoredFrame.idml ├── 01_update.idml ├── 02_endnoteInAnchoredFrameAndTable.idml └── 02_endnotesInDifferentStories.idml └── test_endnotes.jsx /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/README.md -------------------------------------------------------------------------------- /Scripts Panel/idEndnotes__addBacklinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/idEndnotes__addBacklinks.jsx -------------------------------------------------------------------------------- /Scripts Panel/idEndnotes__createEndnotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/idEndnotes__createEndnotes.jsx -------------------------------------------------------------------------------- /Scripts Panel/idEndnotes__deleteAllEndnoteHyperlinksAndBacklinks.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/idEndnotes__deleteAllEndnoteHyperlinksAndBacklinks.jsx -------------------------------------------------------------------------------- /Scripts Panel/idEndnotes__deleteEndnote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/idEndnotes__deleteEndnote.jsx -------------------------------------------------------------------------------- /Scripts Panel/idEndnotes__jumpBetweenMarkerAndNote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/idEndnotes__jumpBetweenMarkerAndNote.jsx -------------------------------------------------------------------------------- /Scripts Panel/lib/config.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/lib/config.jsx -------------------------------------------------------------------------------- /Scripts Panel/lib/idEndnotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/lib/idEndnotes.jsx -------------------------------------------------------------------------------- /Scripts Panel/lib/idsHelper.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/lib/idsHelper.jsx -------------------------------------------------------------------------------- /Scripts Panel/lib/idsLog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/Scripts Panel/lib/idsLog.jsx -------------------------------------------------------------------------------- /docs/endnoteGUI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/docs/endnoteGUI.jpg -------------------------------------------------------------------------------- /docs/endnoteGUIv3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/docs/endnoteGUIv3.jpg -------------------------------------------------------------------------------- /docs/endnoten-Version3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/docs/endnoten-Version3.html -------------------------------------------------------------------------------- /docs/endnotenskript-version3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/docs/endnotenskript-version3.png -------------------------------------------------------------------------------- /docs/listeneigenschaften.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/docs/listeneigenschaften.png -------------------------------------------------------------------------------- /hilfe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/hilfe.md -------------------------------------------------------------------------------- /test/idsTest.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/idsTest.jsx -------------------------------------------------------------------------------- /test/publicTestFiles/01_brokenBacklink.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/publicTestFiles/01_brokenBacklink.idml -------------------------------------------------------------------------------- /test/publicTestFiles/01_endnoteTest.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/publicTestFiles/01_endnoteTest.idml -------------------------------------------------------------------------------- /test/publicTestFiles/01_endnoteTestAnchoredFrame.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/publicTestFiles/01_endnoteTestAnchoredFrame.idml -------------------------------------------------------------------------------- /test/publicTestFiles/01_update.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/publicTestFiles/01_update.idml -------------------------------------------------------------------------------- /test/publicTestFiles/02_endnoteInAnchoredFrameAndTable.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/publicTestFiles/02_endnoteInAnchoredFrameAndTable.idml -------------------------------------------------------------------------------- /test/publicTestFiles/02_endnotesInDifferentStories.idml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/publicTestFiles/02_endnotesInDifferentStories.idml -------------------------------------------------------------------------------- /test/test_endnotes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grefel/indesign-endnotes/HEAD/test/test_endnotes.jsx --------------------------------------------------------------------------------