├── .gitignore ├── LICENSE ├── README.md ├── docs ├── allclasses-index.html ├── allpackages-index.html ├── com │ └── teamten │ │ ├── font │ │ ├── AbstractFont.html │ │ ├── DummyFont.html │ │ ├── FailoverFont.html │ │ ├── Font.Metrics.html │ │ ├── Font.html │ │ ├── FontManager.html │ │ ├── FontName.html │ │ ├── FontPack.html │ │ ├── FontVariant.html │ │ ├── PdfBoxFont.html │ │ ├── PdfBoxFontManager.html │ │ ├── SizedFont.html │ │ ├── SmallCapsFont.html │ │ ├── TrackingFont.html │ │ ├── Typeface.html │ │ ├── TypefaceVariant.html │ │ ├── TypefaceVariantSize.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── hyphen │ │ ├── HyphenDictionary.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── markdown │ │ ├── Block.Builder.html │ │ ├── Block.html │ │ ├── BlockType.html │ │ ├── Doc.html │ │ ├── FontVariantFlags.html │ │ ├── FootnoteSpan.html │ │ ├── ImageSpan.html │ │ ├── IndexSpan.html │ │ ├── LabelSpan.html │ │ ├── MarkdownParser.html │ │ ├── PageRefSpan.html │ │ ├── SectionName.html │ │ ├── ShortenedSpan.html │ │ ├── Span.html │ │ ├── TextSpan.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── tex │ │ ├── TexParser.html │ │ ├── TexTokenizer.html │ │ ├── Token.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ └── typeset │ │ ├── AbstractDimensions.html │ │ ├── Bookmarks.html │ │ ├── Chunk.ElementSizer.html │ │ ├── Chunk.html │ │ ├── ColumnLayout.html │ │ ├── ColumnVerticalList.html │ │ ├── Config.Key.html │ │ ├── Config.html │ │ ├── Dimensions.html │ │ ├── ElementList.Breakpoint.html │ │ ├── ElementList.html │ │ ├── ElementSink.html │ │ ├── HorizontalList.html │ │ ├── IndexBookmark.html │ │ ├── IndexEntries.html │ │ ├── IndexEntry.html │ │ ├── Ligature.html │ │ ├── Ligatures.html │ │ ├── OutputShape.html │ │ ├── ParagraphStyle.html │ │ ├── PdfTest.html │ │ ├── PdfUtil.html │ │ ├── Sections.html │ │ ├── SpaceUnit.html │ │ ├── Typesetter.html │ │ ├── TypesetterTest.html │ │ ├── VerticalAlignment.html │ │ ├── VerticalList.html │ │ ├── element │ │ ├── Bookmark.html │ │ ├── Box.html │ │ ├── Columns.html │ │ ├── DiscardableElement.html │ │ ├── Discretionary.html │ │ ├── Element.html │ │ ├── Flexibility.html │ │ ├── Flexible.html │ │ ├── Footnote.html │ │ ├── Glue.html │ │ ├── HBox.html │ │ ├── Image.html │ │ ├── Kern.html │ │ ├── LabelBookmark.html │ │ ├── Leader.html │ │ ├── NonDiscardableElement.html │ │ ├── Page.html │ │ ├── Penalty.html │ │ ├── Rule.html │ │ ├── SectionBookmark.Type.html │ │ ├── SectionBookmark.html │ │ ├── Text.CharacterDirection.html │ │ ├── Text.html │ │ ├── TotalFlexibility.html │ │ ├── VBox.html │ │ ├── package-summary.html │ │ └── package-tree.html │ │ ├── package-summary.html │ │ └── package-tree.html ├── constant-values.html ├── copy.svg ├── element-list ├── help-doc.html ├── index-all.html ├── index.html ├── jquery-ui.overrides.css ├── legal │ ├── ADDITIONAL_LICENSE_INFO │ ├── ASSEMBLY_EXCEPTION │ ├── LICENSE │ ├── jquery.md │ └── jqueryUI.md ├── member-search-index.js ├── module-search-index.js ├── overview-summary.html ├── overview-tree.html ├── package-search-index.js ├── resources │ ├── glass.png │ └── x.png ├── script-dir │ ├── images │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_dadada_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-3.5.1.min.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ └── jquery-ui.structure.min.css ├── script.js ├── search.js ├── stylesheet.css ├── tag-search-index.js └── type-search-index.js ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src ├── main ├── java │ └── com │ │ └── teamten │ │ ├── font │ │ ├── AbstractFont.java │ │ ├── DummyFont.java │ │ ├── FailoverFont.java │ │ ├── Font.java │ │ ├── FontManager.java │ │ ├── FontName.java │ │ ├── FontPack.java │ │ ├── FontVariant.java │ │ ├── PdfBoxFont.java │ │ ├── PdfBoxFontManager.java │ │ ├── SizedFont.java │ │ ├── SmallCapsFont.java │ │ ├── TrackingFont.java │ │ ├── Typeface.java │ │ ├── TypefaceVariant.java │ │ └── TypefaceVariantSize.java │ │ ├── hyphen │ │ └── HyphenDictionary.java │ │ ├── markdown │ │ ├── Block.java │ │ ├── BlockType.java │ │ ├── Doc.java │ │ ├── FontVariantFlags.java │ │ ├── FootnoteSpan.java │ │ ├── ImageSpan.java │ │ ├── IndexSpan.java │ │ ├── LabelSpan.java │ │ ├── MarkdownParser.java │ │ ├── PageRefSpan.java │ │ ├── SectionName.java │ │ ├── ShortenedSpan.java │ │ ├── Span.java │ │ └── TextSpan.java │ │ ├── tex │ │ ├── TexParser.java │ │ ├── TexTokenizer.java │ │ └── Token.java │ │ └── typeset │ │ ├── AbstractDimensions.java │ │ ├── Bookmarks.java │ │ ├── Chunk.java │ │ ├── ColumnLayout.java │ │ ├── ColumnVerticalList.java │ │ ├── Config.java │ │ ├── Dimensions.java │ │ ├── ElementList.java │ │ ├── ElementSink.java │ │ ├── HorizontalList.java │ │ ├── IndexBookmark.java │ │ ├── IndexEntries.java │ │ ├── IndexEntry.java │ │ ├── Ligature.java │ │ ├── Ligatures.java │ │ ├── OutputShape.java │ │ ├── ParagraphStyle.java │ │ ├── PdfTest.java │ │ ├── PdfUtil.java │ │ ├── Sections.java │ │ ├── SpaceUnit.java │ │ ├── Typesetter.java │ │ ├── TypesetterTest.java │ │ ├── VerticalAlignment.java │ │ ├── VerticalList.java │ │ └── element │ │ ├── Bookmark.java │ │ ├── Box.java │ │ ├── Columns.java │ │ ├── DiscardableElement.java │ │ ├── Discretionary.java │ │ ├── Element.java │ │ ├── Flexibility.java │ │ ├── Flexible.java │ │ ├── Footnote.java │ │ ├── Glue.java │ │ ├── HBox.java │ │ ├── Image.java │ │ ├── Kern.java │ │ ├── LabelBookmark.java │ │ ├── Leader.java │ │ ├── NonDiscardableElement.java │ │ ├── Page.java │ │ ├── Penalty.java │ │ ├── Rule.java │ │ ├── SectionBookmark.java │ │ ├── Text.java │ │ ├── TotalFlexibility.java │ │ └── VBox.java └── resources │ └── com │ └── teamten │ └── hyphen │ ├── README │ ├── README_hyph_en_US.txt │ ├── README_hyph_fr-3.0.txt │ ├── hyph_en_US.dic │ └── hyph_fr.dic └── test └── java └── com └── teamten ├── hyphen └── HyphenDictionaryTest.java ├── markdown └── MarkdownParserTest.java └── typeset ├── HorizontalListTest.java └── SpaceUnitTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/README.md -------------------------------------------------------------------------------- /docs/allclasses-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/allclasses-index.html -------------------------------------------------------------------------------- /docs/allpackages-index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/allpackages-index.html -------------------------------------------------------------------------------- /docs/com/teamten/font/AbstractFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/AbstractFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/DummyFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/DummyFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/FailoverFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/FailoverFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/Font.Metrics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/Font.Metrics.html -------------------------------------------------------------------------------- /docs/com/teamten/font/Font.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/Font.html -------------------------------------------------------------------------------- /docs/com/teamten/font/FontManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/FontManager.html -------------------------------------------------------------------------------- /docs/com/teamten/font/FontName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/FontName.html -------------------------------------------------------------------------------- /docs/com/teamten/font/FontPack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/FontPack.html -------------------------------------------------------------------------------- /docs/com/teamten/font/FontVariant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/FontVariant.html -------------------------------------------------------------------------------- /docs/com/teamten/font/PdfBoxFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/PdfBoxFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/PdfBoxFontManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/PdfBoxFontManager.html -------------------------------------------------------------------------------- /docs/com/teamten/font/SizedFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/SizedFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/SmallCapsFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/SmallCapsFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/TrackingFont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/TrackingFont.html -------------------------------------------------------------------------------- /docs/com/teamten/font/Typeface.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/Typeface.html -------------------------------------------------------------------------------- /docs/com/teamten/font/TypefaceVariant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/TypefaceVariant.html -------------------------------------------------------------------------------- /docs/com/teamten/font/TypefaceVariantSize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/TypefaceVariantSize.html -------------------------------------------------------------------------------- /docs/com/teamten/font/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/package-summary.html -------------------------------------------------------------------------------- /docs/com/teamten/font/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/font/package-tree.html -------------------------------------------------------------------------------- /docs/com/teamten/hyphen/HyphenDictionary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/hyphen/HyphenDictionary.html -------------------------------------------------------------------------------- /docs/com/teamten/hyphen/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/hyphen/package-summary.html -------------------------------------------------------------------------------- /docs/com/teamten/hyphen/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/hyphen/package-tree.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/Block.Builder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/Block.Builder.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/Block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/Block.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/BlockType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/BlockType.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/Doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/Doc.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/FontVariantFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/FontVariantFlags.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/FootnoteSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/FootnoteSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/ImageSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/ImageSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/IndexSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/IndexSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/LabelSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/LabelSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/MarkdownParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/MarkdownParser.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/PageRefSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/PageRefSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/SectionName.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/SectionName.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/ShortenedSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/ShortenedSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/Span.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/Span.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/TextSpan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/TextSpan.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/package-summary.html -------------------------------------------------------------------------------- /docs/com/teamten/markdown/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/markdown/package-tree.html -------------------------------------------------------------------------------- /docs/com/teamten/tex/TexParser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/tex/TexParser.html -------------------------------------------------------------------------------- /docs/com/teamten/tex/TexTokenizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/tex/TexTokenizer.html -------------------------------------------------------------------------------- /docs/com/teamten/tex/Token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/tex/Token.html -------------------------------------------------------------------------------- /docs/com/teamten/tex/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/tex/package-summary.html -------------------------------------------------------------------------------- /docs/com/teamten/tex/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/tex/package-tree.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/AbstractDimensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/AbstractDimensions.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Bookmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Bookmarks.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Chunk.ElementSizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Chunk.ElementSizer.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Chunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Chunk.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/ColumnLayout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/ColumnLayout.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/ColumnVerticalList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/ColumnVerticalList.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Config.Key.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Config.Key.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Config.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Dimensions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Dimensions.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/ElementList.Breakpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/ElementList.Breakpoint.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/ElementList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/ElementList.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/ElementSink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/ElementSink.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/HorizontalList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/HorizontalList.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/IndexBookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/IndexBookmark.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/IndexEntries.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/IndexEntries.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/IndexEntry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/IndexEntry.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Ligature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Ligature.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Ligatures.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Ligatures.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/OutputShape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/OutputShape.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/ParagraphStyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/ParagraphStyle.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/PdfTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/PdfTest.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/PdfUtil.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/PdfUtil.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Sections.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/SpaceUnit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/SpaceUnit.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/Typesetter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/Typesetter.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/TypesetterTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/TypesetterTest.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/VerticalAlignment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/VerticalAlignment.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/VerticalList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/VerticalList.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Bookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Bookmark.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Box.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Box.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Columns.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/DiscardableElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/DiscardableElement.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Discretionary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Discretionary.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Element.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Flexibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Flexibility.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Flexible.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Flexible.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Footnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Footnote.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Glue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Glue.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/HBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/HBox.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Image.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Kern.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Kern.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/LabelBookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/LabelBookmark.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Leader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Leader.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/NonDiscardableElement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/NonDiscardableElement.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Page.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Penalty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Penalty.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Rule.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Rule.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/SectionBookmark.Type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/SectionBookmark.Type.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/SectionBookmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/SectionBookmark.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Text.CharacterDirection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Text.CharacterDirection.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/Text.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/Text.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/TotalFlexibility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/TotalFlexibility.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/VBox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/VBox.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/package-summary.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/element/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/element/package-tree.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/package-summary.html -------------------------------------------------------------------------------- /docs/com/teamten/typeset/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/com/teamten/typeset/package-tree.html -------------------------------------------------------------------------------- /docs/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/constant-values.html -------------------------------------------------------------------------------- /docs/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/copy.svg -------------------------------------------------------------------------------- /docs/element-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/element-list -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/index-all.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery-ui.overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/jquery-ui.overrides.css -------------------------------------------------------------------------------- /docs/legal/ADDITIONAL_LICENSE_INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/legal/ADDITIONAL_LICENSE_INFO -------------------------------------------------------------------------------- /docs/legal/ASSEMBLY_EXCEPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/legal/ASSEMBLY_EXCEPTION -------------------------------------------------------------------------------- /docs/legal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/legal/LICENSE -------------------------------------------------------------------------------- /docs/legal/jquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/legal/jquery.md -------------------------------------------------------------------------------- /docs/legal/jqueryUI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/legal/jqueryUI.md -------------------------------------------------------------------------------- /docs/member-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/member-search-index.js -------------------------------------------------------------------------------- /docs/module-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/module-search-index.js -------------------------------------------------------------------------------- /docs/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/overview-summary.html -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/package-search-index.js -------------------------------------------------------------------------------- /docs/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/resources/glass.png -------------------------------------------------------------------------------- /docs/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/resources/x.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-bg_glass_65_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-bg_glass_65_dadada_1x400.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /docs/script-dir/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /docs/script-dir/jquery-3.5.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/jquery-3.5.1.min.js -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/jquery-ui.min.css -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/script-dir/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script-dir/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/search.js -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/tag-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/tag-search-index.js -------------------------------------------------------------------------------- /docs/type-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/docs/type-search-index.js -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/AbstractFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/AbstractFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/DummyFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/DummyFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/FailoverFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/FailoverFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/Font.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/Font.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/FontManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/FontManager.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/FontName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/FontName.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/FontPack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/FontPack.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/FontVariant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/FontVariant.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/PdfBoxFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/PdfBoxFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/PdfBoxFontManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/PdfBoxFontManager.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/SizedFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/SizedFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/SmallCapsFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/SmallCapsFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/TrackingFont.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/TrackingFont.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/Typeface.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/Typeface.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/TypefaceVariant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/TypefaceVariant.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/font/TypefaceVariantSize.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/font/TypefaceVariantSize.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/hyphen/HyphenDictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/hyphen/HyphenDictionary.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/Block.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/Block.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/BlockType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/BlockType.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/Doc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/Doc.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/FontVariantFlags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/FontVariantFlags.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/FootnoteSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/FootnoteSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/ImageSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/ImageSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/IndexSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/IndexSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/LabelSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/LabelSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/MarkdownParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/MarkdownParser.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/PageRefSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/PageRefSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/SectionName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/SectionName.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/ShortenedSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/ShortenedSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/Span.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/Span.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/markdown/TextSpan.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/markdown/TextSpan.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/tex/TexParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/tex/TexParser.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/tex/TexTokenizer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/tex/TexTokenizer.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/tex/Token.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/tex/Token.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/AbstractDimensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/AbstractDimensions.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Bookmarks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Bookmarks.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Chunk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Chunk.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/ColumnLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/ColumnLayout.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/ColumnVerticalList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/ColumnVerticalList.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Config.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Dimensions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Dimensions.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/ElementList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/ElementList.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/ElementSink.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/ElementSink.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/HorizontalList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/HorizontalList.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/IndexBookmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/IndexBookmark.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/IndexEntries.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/IndexEntries.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/IndexEntry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/IndexEntry.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Ligature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Ligature.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Ligatures.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Ligatures.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/OutputShape.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/OutputShape.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/ParagraphStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/ParagraphStyle.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/PdfTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/PdfTest.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/PdfUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/PdfUtil.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Sections.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Sections.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/SpaceUnit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/SpaceUnit.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/Typesetter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/Typesetter.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/TypesetterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/TypesetterTest.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/VerticalAlignment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/VerticalAlignment.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/VerticalList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/VerticalList.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Bookmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Bookmark.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Box.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Box.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Columns.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Columns.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/DiscardableElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/DiscardableElement.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Discretionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Discretionary.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Element.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Element.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Flexibility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Flexibility.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Flexible.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Flexible.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Footnote.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Footnote.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Glue.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Glue.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/HBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/HBox.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Image.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Image.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Kern.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Kern.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/LabelBookmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/LabelBookmark.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Leader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Leader.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/NonDiscardableElement.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/NonDiscardableElement.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Page.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Page.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Penalty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Penalty.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Rule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Rule.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/SectionBookmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/SectionBookmark.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/Text.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/Text.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/TotalFlexibility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/TotalFlexibility.java -------------------------------------------------------------------------------- /src/main/java/com/teamten/typeset/element/VBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/java/com/teamten/typeset/element/VBox.java -------------------------------------------------------------------------------- /src/main/resources/com/teamten/hyphen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/resources/com/teamten/hyphen/README -------------------------------------------------------------------------------- /src/main/resources/com/teamten/hyphen/README_hyph_en_US.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/resources/com/teamten/hyphen/README_hyph_en_US.txt -------------------------------------------------------------------------------- /src/main/resources/com/teamten/hyphen/README_hyph_fr-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/resources/com/teamten/hyphen/README_hyph_fr-3.0.txt -------------------------------------------------------------------------------- /src/main/resources/com/teamten/hyphen/hyph_en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/resources/com/teamten/hyphen/hyph_en_US.dic -------------------------------------------------------------------------------- /src/main/resources/com/teamten/hyphen/hyph_fr.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/main/resources/com/teamten/hyphen/hyph_fr.dic -------------------------------------------------------------------------------- /src/test/java/com/teamten/hyphen/HyphenDictionaryTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/test/java/com/teamten/hyphen/HyphenDictionaryTest.java -------------------------------------------------------------------------------- /src/test/java/com/teamten/markdown/MarkdownParserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/test/java/com/teamten/markdown/MarkdownParserTest.java -------------------------------------------------------------------------------- /src/test/java/com/teamten/typeset/HorizontalListTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/test/java/com/teamten/typeset/HorizontalListTest.java -------------------------------------------------------------------------------- /src/test/java/com/teamten/typeset/SpaceUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lkesteloot/teamten-typeset/HEAD/src/test/java/com/teamten/typeset/SpaceUnitTest.java --------------------------------------------------------------------------------