├── .gitignore ├── .swiftlint.yml ├── Images ├── icon.png └── screenshot-macOS.jpg ├── LICENSE ├── MANUAL.pdf ├── README.md ├── config.zsh ├── fonts ├── GreatVibes test book │ ├── assets │ │ ├── cover-screen.jpg │ │ ├── make-book.md │ │ └── style.css │ └── greatvibes.md ├── GreatVibes.ttf └── LICENSE.md ├── includes ├── colours.zsh ├── shared.zsh └── variables.zsh ├── macOS ├── Make Books │ ├── .jazzy.yaml │ ├── .swiftlint.yml │ ├── Make Books.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── Make Books │ │ ├── General │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_128x128.png │ │ │ │ ├── icon_128x128@2x.png │ │ │ │ ├── icon_16x16.png │ │ │ │ ├── icon_16x16@2x.png │ │ │ │ ├── icon_256x256.png │ │ │ │ ├── icon_256x256@2x.png │ │ │ │ ├── icon_32x32.png │ │ │ │ ├── icon_32x32@2x.png │ │ │ │ ├── icon_512x512.png │ │ │ │ └── icon_512x512@2x.png │ │ │ ├── Contents.json │ │ │ ├── HugeIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── HugeIcon.png │ │ │ ├── alternatedList.colorset │ │ │ │ └── Contents.json │ │ │ └── windowBackground.colorset │ │ │ │ └── Contents.json │ │ ├── BookCover.swift │ │ ├── Debug.swift │ │ ├── Extensions.swift │ │ ├── Info.plist │ │ ├── MakeBooks.entitlements │ │ ├── MakeBooksApp.swift │ │ ├── MakeBooksDocument.swift │ │ ├── PDFKitRepresentedView.swift │ │ ├── Search.swift │ │ ├── StaticSetting.swift │ │ ├── Status.swift │ │ └── UserSetting.swift │ │ ├── Models │ │ ├── Author.swift │ │ ├── Book+ChapterStyle.swift │ │ ├── Book+CodingKeys.swift │ │ ├── Book.swift │ │ ├── Collection+Item.swift │ │ ├── Collection.swift │ │ ├── Log.swift │ │ ├── MakeOption.swift │ │ ├── Media.swift │ │ ├── Serie.swift │ │ └── Utility.swift │ │ ├── Modifiers │ │ ├── Modifier+FileDropper.swift │ │ ├── Modifier+Suggestions.swift │ │ └── Modifier.swift │ │ ├── Observables │ │ ├── Library+Regex.swift │ │ ├── Library.swift │ │ ├── MakeState.swift │ │ └── SceneState.swift │ │ ├── Packages │ │ ├── Cache.swift │ │ ├── FolderBookmark.swift │ │ ├── FolderUtil.swift │ │ ├── SwiftlyAlertMessage.swift │ │ └── Terminal.swift │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ ├── Router │ │ ├── Router+DestinationView.swift │ │ ├── Router+item.swift │ │ └── Router.swift │ │ ├── Sorting │ │ ├── BookListSort.swift │ │ ├── Sort+Method.swift │ │ ├── Sort+Options.swift │ │ ├── Sort+Order.swift │ │ └── Sort.swift │ │ └── Views │ │ ├── Buttons.swift │ │ ├── EditBook │ │ ├── EditBookView+Collection.swift │ │ ├── EditBookView+Submit.swift │ │ ├── EditBookView+general.swift │ │ ├── EditBookView+media.swift │ │ ├── EditBookView+series.swift │ │ └── EditBookView.swift │ │ ├── FileDropperView+Details.swift │ │ ├── FileDropperView.swift │ │ ├── InspectorView.swift │ │ ├── MainView.swift │ │ ├── MakeView.swift │ │ ├── Media │ │ ├── AuthorsView+Cell.swift │ │ ├── AuthorsView.swift │ │ ├── BookView+Details.swift │ │ ├── BookView+Header.swift │ │ ├── BookView.swift │ │ ├── BooksView+Cell.swift │ │ ├── BooksView+Header.swift │ │ ├── BooksView+Item.swift │ │ ├── BooksView.swift │ │ ├── CollectionView.swift │ │ ├── SeriesView+Cell.swift │ │ ├── SeriesView.swift │ │ └── TagView.swift │ │ ├── OptionsView.swift │ │ ├── PartsView.swift │ │ ├── PreviewView.swift │ │ ├── ScrollCollectionView.swift │ │ ├── SearchView.swift │ │ ├── SettingsView.swift │ │ └── SidebarView.swift └── README.md ├── make └── Makefile ├── pandoc ├── css │ ├── epub-css.css │ └── epub-greatvibes.css ├── filters │ ├── desbeers-chapterprecis.lua │ ├── desbeers-dropcaps.lua │ ├── desbeers-hashtags.lua │ ├── desbeers-headers.lua │ ├── desbeers-images.lua │ ├── desbeers-linebreaks.lua │ ├── desbeers-matters.lua │ ├── desbeers-metadata.lua │ ├── desbeers-native.lua │ └── desbeers-quotes.lua └── templates │ ├── desbeers-epub-dedication.html │ ├── desbeers-epub.html │ ├── desbeers-pdf-dedication.tex │ ├── desbeers-pdf-single-page.tex │ └── desbeers-pdf.tex ├── sample book ├── 00 01 Introduction.md ├── 00 02 Installation.md ├── 00 03 Configuration.md ├── 01 00 Writing.md ├── 01 01 Anatomy.md ├── 01 02 Markup.md ├── 01 03 Parts.md ├── 01 04 Meta.md ├── 01 05 Folder Structure.md ├── 02 00 Compiling.md ├── 02 01 Book.md ├── 02 02 All Books.md ├── 02 02 Collection.md ├── 02 03 Tags.md ├── 03 00 Technical Stuff.md ├── 03 01 Files.md ├── 03 02 Pandoc Filters.md ├── 03 03 Latex.md ├── 03 04 Make.md ├── 03 06 A Real Mac Application.md ├── 09 01 Afterword.md ├── assets │ ├── cover-screen.jpg │ ├── dedication.md │ └── make-book.md └── images │ ├── chapter-header.png │ ├── chapter-precis.png │ ├── compile.png │ ├── dont-break-the-rules.png │ ├── folder-structure.png │ ├── image-sample.png │ ├── mac-app.png │ ├── magic-trick.png │ ├── make-book.png │ ├── make-collection.png │ ├── my-books.png │ └── textmate.png ├── terminal ├── WMMakeBooksMenu ├── WMMarkdownList ├── make-all-books ├── make-all-collections ├── make-all-tags ├── make-book ├── make-collection ├── make-pdf └── make-tag-book └── texmf └── tex └── latex ├── fonts └── GreatVibes.cfl └── templates └── desbeers-six-by-nine.cls /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /Images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/Images/icon.png -------------------------------------------------------------------------------- /Images/screenshot-macOS.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/Images/screenshot-macOS.jpg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/MANUAL.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/README.md -------------------------------------------------------------------------------- /config.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/config.zsh -------------------------------------------------------------------------------- /fonts/GreatVibes test book/assets/cover-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/fonts/GreatVibes test book/assets/cover-screen.jpg -------------------------------------------------------------------------------- /fonts/GreatVibes test book/assets/make-book.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Great Vibes 3 | author: Nick Berendsen 4 | date: 2019 5 | lang: nl-NL 6 | --- 7 | -------------------------------------------------------------------------------- /fonts/GreatVibes test book/assets/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fonts/GreatVibes test book/greatvibes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/fonts/GreatVibes test book/greatvibes.md -------------------------------------------------------------------------------- /fonts/GreatVibes.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/fonts/GreatVibes.ttf -------------------------------------------------------------------------------- /fonts/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/fonts/LICENSE.md -------------------------------------------------------------------------------- /includes/colours.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/includes/colours.zsh -------------------------------------------------------------------------------- /includes/shared.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/includes/shared.zsh -------------------------------------------------------------------------------- /includes/variables.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/includes/variables.zsh -------------------------------------------------------------------------------- /macOS/Make Books/.jazzy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/.jazzy.yaml -------------------------------------------------------------------------------- /macOS/Make Books/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/.swiftlint.yml -------------------------------------------------------------------------------- /macOS/Make Books/Make Books.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /macOS/Make Books/Make Books.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /macOS/Make Books/Make Books.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /macOS/Make Books/Make Books.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_128x128.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_16x16.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_256x256.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_32x32.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_512x512.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/AppIcon.appiconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/HugeIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/HugeIcon.imageset/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/HugeIcon.imageset/HugeIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/HugeIcon.imageset/HugeIcon.png -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/alternatedList.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/alternatedList.colorset/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Assets.xcassets/windowBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Assets.xcassets/windowBackground.colorset/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/BookCover.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/BookCover.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Debug.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Debug.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Extensions.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Info.plist -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/MakeBooks.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/MakeBooks.entitlements -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/MakeBooksApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/MakeBooksApp.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/MakeBooksDocument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/MakeBooksDocument.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/PDFKitRepresentedView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/PDFKitRepresentedView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Search.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Search.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/StaticSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/StaticSetting.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/Status.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/Status.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/General/UserSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/General/UserSetting.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Author.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Author.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Book+ChapterStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Book+ChapterStyle.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Book+CodingKeys.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Book+CodingKeys.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Book.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Book.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Collection+Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Collection+Item.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Collection.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Log.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Log.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/MakeOption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/MakeOption.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Media.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Serie.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Serie.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Models/Utility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Models/Utility.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Modifiers/Modifier+FileDropper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Modifiers/Modifier+FileDropper.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Modifiers/Modifier+Suggestions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Modifiers/Modifier+Suggestions.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Modifiers/Modifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Modifiers/Modifier.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Observables/Library+Regex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Observables/Library+Regex.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Observables/Library.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Observables/Library.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Observables/MakeState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Observables/MakeState.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Observables/SceneState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Observables/SceneState.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Packages/Cache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Packages/Cache.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Packages/FolderBookmark.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Packages/FolderBookmark.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Packages/FolderUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Packages/FolderUtil.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Packages/SwiftlyAlertMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Packages/SwiftlyAlertMessage.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Packages/Terminal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Packages/Terminal.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Router/Router+DestinationView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Router/Router+DestinationView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Router/Router+item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Router/Router+item.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Router/Router.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Router/Router.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Sorting/BookListSort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Sorting/BookListSort.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Sorting/Sort+Method.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Sorting/Sort+Method.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Sorting/Sort+Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Sorting/Sort+Options.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Sorting/Sort+Order.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Sorting/Sort+Order.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Sorting/Sort.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Sorting/Sort.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Buttons.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Buttons.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/EditBook/EditBookView+Collection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/EditBook/EditBookView+Collection.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/EditBook/EditBookView+Submit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/EditBook/EditBookView+Submit.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/EditBook/EditBookView+general.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/EditBook/EditBookView+general.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/EditBook/EditBookView+media.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/EditBook/EditBookView+media.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/EditBook/EditBookView+series.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/EditBook/EditBookView+series.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/EditBook/EditBookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/EditBook/EditBookView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/FileDropperView+Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/FileDropperView+Details.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/FileDropperView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/FileDropperView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/InspectorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/InspectorView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/MainView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/MakeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/MakeView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/AuthorsView+Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/AuthorsView+Cell.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/AuthorsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/AuthorsView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BookView+Details.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BookView+Details.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BookView+Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BookView+Header.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BookView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BookView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BooksView+Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BooksView+Cell.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BooksView+Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BooksView+Header.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BooksView+Item.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BooksView+Item.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/BooksView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/BooksView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/CollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/CollectionView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/SeriesView+Cell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/SeriesView+Cell.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/SeriesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/SeriesView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/Media/TagView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/Media/TagView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/OptionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/OptionsView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/PartsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/PartsView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/PreviewView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/PreviewView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/ScrollCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/ScrollCollectionView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/SearchView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/SearchView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/SettingsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/SettingsView.swift -------------------------------------------------------------------------------- /macOS/Make Books/Make Books/Views/SidebarView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/Make Books/Make Books/Views/SidebarView.swift -------------------------------------------------------------------------------- /macOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/macOS/README.md -------------------------------------------------------------------------------- /make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/make/Makefile -------------------------------------------------------------------------------- /pandoc/css/epub-css.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/css/epub-css.css -------------------------------------------------------------------------------- /pandoc/css/epub-greatvibes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/css/epub-greatvibes.css -------------------------------------------------------------------------------- /pandoc/filters/desbeers-chapterprecis.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-chapterprecis.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-dropcaps.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-dropcaps.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-hashtags.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-hashtags.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-headers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-headers.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-images.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-images.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-linebreaks.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-linebreaks.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-matters.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-matters.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-metadata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-metadata.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-native.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-native.lua -------------------------------------------------------------------------------- /pandoc/filters/desbeers-quotes.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/filters/desbeers-quotes.lua -------------------------------------------------------------------------------- /pandoc/templates/desbeers-epub-dedication.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/templates/desbeers-epub-dedication.html -------------------------------------------------------------------------------- /pandoc/templates/desbeers-epub.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/templates/desbeers-epub.html -------------------------------------------------------------------------------- /pandoc/templates/desbeers-pdf-dedication.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/templates/desbeers-pdf-dedication.tex -------------------------------------------------------------------------------- /pandoc/templates/desbeers-pdf-single-page.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/templates/desbeers-pdf-single-page.tex -------------------------------------------------------------------------------- /pandoc/templates/desbeers-pdf.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/pandoc/templates/desbeers-pdf.tex -------------------------------------------------------------------------------- /sample book/00 01 Introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/00 01 Introduction.md -------------------------------------------------------------------------------- /sample book/00 02 Installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/00 02 Installation.md -------------------------------------------------------------------------------- /sample book/00 03 Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/00 03 Configuration.md -------------------------------------------------------------------------------- /sample book/01 00 Writing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/01 00 Writing.md -------------------------------------------------------------------------------- /sample book/01 01 Anatomy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/01 01 Anatomy.md -------------------------------------------------------------------------------- /sample book/01 02 Markup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/01 02 Markup.md -------------------------------------------------------------------------------- /sample book/01 03 Parts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/01 03 Parts.md -------------------------------------------------------------------------------- /sample book/01 04 Meta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/01 04 Meta.md -------------------------------------------------------------------------------- /sample book/01 05 Folder Structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/01 05 Folder Structure.md -------------------------------------------------------------------------------- /sample book/02 00 Compiling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/02 00 Compiling.md -------------------------------------------------------------------------------- /sample book/02 01 Book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/02 01 Book.md -------------------------------------------------------------------------------- /sample book/02 02 All Books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/02 02 All Books.md -------------------------------------------------------------------------------- /sample book/02 02 Collection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/02 02 Collection.md -------------------------------------------------------------------------------- /sample book/02 03 Tags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/02 03 Tags.md -------------------------------------------------------------------------------- /sample book/03 00 Technical Stuff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/03 00 Technical Stuff.md -------------------------------------------------------------------------------- /sample book/03 01 Files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/03 01 Files.md -------------------------------------------------------------------------------- /sample book/03 02 Pandoc Filters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/03 02 Pandoc Filters.md -------------------------------------------------------------------------------- /sample book/03 03 Latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/03 03 Latex.md -------------------------------------------------------------------------------- /sample book/03 04 Make.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/03 04 Make.md -------------------------------------------------------------------------------- /sample book/03 06 A Real Mac Application.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/03 06 A Real Mac Application.md -------------------------------------------------------------------------------- /sample book/09 01 Afterword.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/09 01 Afterword.md -------------------------------------------------------------------------------- /sample book/assets/cover-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/assets/cover-screen.jpg -------------------------------------------------------------------------------- /sample book/assets/dedication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/assets/dedication.md -------------------------------------------------------------------------------- /sample book/assets/make-book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/assets/make-book.md -------------------------------------------------------------------------------- /sample book/images/chapter-header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/chapter-header.png -------------------------------------------------------------------------------- /sample book/images/chapter-precis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/chapter-precis.png -------------------------------------------------------------------------------- /sample book/images/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/compile.png -------------------------------------------------------------------------------- /sample book/images/dont-break-the-rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/dont-break-the-rules.png -------------------------------------------------------------------------------- /sample book/images/folder-structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/folder-structure.png -------------------------------------------------------------------------------- /sample book/images/image-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/image-sample.png -------------------------------------------------------------------------------- /sample book/images/mac-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/mac-app.png -------------------------------------------------------------------------------- /sample book/images/magic-trick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/magic-trick.png -------------------------------------------------------------------------------- /sample book/images/make-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/make-book.png -------------------------------------------------------------------------------- /sample book/images/make-collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/make-collection.png -------------------------------------------------------------------------------- /sample book/images/my-books.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/my-books.png -------------------------------------------------------------------------------- /sample book/images/textmate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/sample book/images/textmate.png -------------------------------------------------------------------------------- /terminal/WMMakeBooksMenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/WMMakeBooksMenu -------------------------------------------------------------------------------- /terminal/WMMarkdownList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/WMMarkdownList -------------------------------------------------------------------------------- /terminal/make-all-books: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-all-books -------------------------------------------------------------------------------- /terminal/make-all-collections: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-all-collections -------------------------------------------------------------------------------- /terminal/make-all-tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-all-tags -------------------------------------------------------------------------------- /terminal/make-book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-book -------------------------------------------------------------------------------- /terminal/make-collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-collection -------------------------------------------------------------------------------- /terminal/make-pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-pdf -------------------------------------------------------------------------------- /terminal/make-tag-book: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/terminal/make-tag-book -------------------------------------------------------------------------------- /texmf/tex/latex/fonts/GreatVibes.cfl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/texmf/tex/latex/fonts/GreatVibes.cfl -------------------------------------------------------------------------------- /texmf/tex/latex/templates/desbeers-six-by-nine.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Desbeers/Make-Books/HEAD/texmf/tex/latex/templates/desbeers-six-by-nine.cls --------------------------------------------------------------------------------