├── .gitignore ├── LICENSE.md ├── Notenik Logo Files ├── Notenik Graphics for Big Sur │ ├── Icon Big Sur Background 1024.png │ ├── Notenik App Icon 1024.png │ ├── Notenik App Icon 128.png │ ├── Notenik App Icon 16.png │ ├── Notenik App Icon 256.png │ ├── Notenik App Icon 32.png │ ├── Notenik App Icon 512.png │ ├── Notenik App Icon 64.ico │ ├── Notenik App Icon 64.png │ ├── Notenik App Icon.afdesign │ ├── favicon.ico │ ├── favicon.png │ ├── 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 ├── Notenik Graphics for iOS │ ├── Notenik App Icon 1024.png │ ├── Notenik iOS App Icon.afdesign │ ├── icon_1024@1x.png │ ├── icon_20@1x.png │ ├── icon_20@2x.png │ ├── icon_20@3x.png │ ├── icon_29@1x.png │ ├── icon_29@2x.png │ ├── icon_29@3x.png │ ├── icon_40@1x.png │ ├── icon_40@2x.png │ ├── icon_40@3x.png │ ├── icon_60@2x.png │ ├── icon_60@3x.png │ ├── icon_76@1x.png │ ├── icon_76@2x.png │ └── icon_83p5@2x.png ├── Quill-3_120px.png ├── Screen Shot 2019-06-02 at 2.45.39 PM.png ├── icon-1024.png ├── icon.png ├── 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 ├── Notenik Screenshots ├── Screen Shot 1.png └── Screen Shot 2.png ├── Notenik iOS Journey ├── - README.txt ├── Add and Access an Intro Notes Collection.md ├── Added Needed Frameworks to new iOS Target.md ├── Created new Target Notenik-iOS.md ├── Decision to use UIKit.md ├── Downloaded NetNewsWire project from GitHub.md ├── Enable iCloud access.md ├── Starting Development of iOS version of Notenik.md ├── Subscribed to Ray Wenderlich.md └── template.md ├── Notenik-iOS ├── AppDelegate.swift ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── icon_1024@1x.png │ │ ├── icon_20@1x.png │ │ ├── icon_20@2x-1.png │ │ ├── icon_20@2x.png │ │ ├── icon_20@3x.png │ │ ├── icon_29@1x.png │ │ ├── icon_29@2x-1.png │ │ ├── icon_29@2x.png │ │ ├── icon_29@3x.png │ │ ├── icon_40@1x.png │ │ ├── icon_40@2x-1.png │ │ ├── icon_40@2x.png │ │ ├── icon_40@3x.png │ │ ├── icon_60@2x.png │ │ ├── icon_60@3x.png │ │ ├── icon_76@1x.png │ │ ├── icon_76@2x.png │ │ └── icon_83p5@2x.png │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CollectionsViewController.swift ├── DisplayNoteViewController.swift ├── Info.plist ├── Notenik-iOS.entitlements ├── NotesListViewController.swift ├── SceneDelegate.swift └── intro-ios │ ├── - README.txt │ ├── Add Some Notes.text │ ├── Explore Further.text │ ├── Getting Started.text │ ├── Helpful Resources.text │ ├── Major Features.text │ ├── Note Number 10.txt │ ├── Note Number 11.txt │ ├── Note Number 12.txt │ ├── Note Number 13.txt │ ├── Note Number 14.txt │ ├── Note Number 15.txt │ ├── Note Number 6.txt │ ├── Note Number 7.txt │ ├── Note Number 8.txt │ ├── Note Number 9.txt │ ├── Welcome to Notenik .text │ └── template.text ├── Notenik.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── hbowie.xcuserdatad │ │ └── IDEFindNavigatorScopes.plist └── xcuserdata │ └── hbowie.xcuserdatad │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── Notenik ├── AppAddNote.swift ├── AppDelegate.swift ├── AppGetSelectedNoteBacklink.swift ├── AppGetSelectedNoteFilePath.swift ├── AppGetSelectedNoteTitle.swift ├── AppHasSelectedNote.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Notenik App Icon 1024.png │ │ ├── Notenik App Icon 128.png │ │ ├── Notenik App Icon 16.png │ │ ├── Notenik App Icon 256-1.png │ │ ├── Notenik App Icon 256.png │ │ ├── Notenik App Icon 32-1.png │ │ ├── Notenik App Icon 32.png │ │ ├── Notenik App Icon 512-1.png │ │ ├── Notenik App Icon 512.png │ │ └── Notenik App Icon 64.png │ └── Contents.json ├── Base.lproj │ └── Main.storyboard ├── CollectionJuggler.swift ├── CollectionView.swift ├── CollectionViewCoordinator.swift ├── CollectionWindow.swift ├── CollectionWindowController.swift ├── Credits.rtf ├── CustomURLActor.swift ├── Info.plist ├── Intents.intentdefinition ├── NoteDisplayView.swift ├── NoteDisplayViewController.swift ├── NoteDisplayWebView.swift ├── NoteDocumentController.swift ├── NoteEditViewController.swift ├── NoteListViewController.swift ├── NoteScroller.swift ├── NoteSelectionSource.swift ├── NoteSplitViewController.swift ├── NoteTabsViewController.swift ├── NoteTagsViewController.swift ├── Notenik.entitlements ├── Notenik.sdef ├── ReportRunner.swift ├── advsearch │ ├── AdvSearch.storyboard │ ├── AdvSearchViewController.swift │ ├── AdvSearchWindowController.swift │ └── SearchOptions.swift ├── attachments │ ├── Attachment.storyboard │ ├── AttachmentMasterController.swift │ ├── AttachmentViewController.swift │ └── AttachmentWindowController.swift ├── auxTextEdit │ ├── AuxTextEdit.storyboard │ ├── AuxTextEditViewController.swift │ └── AuxTextEditWindowController.swift ├── bulkEdit │ ├── BulkEdit.storyboard │ ├── BulkEditViewController.swift │ └── BulkEditWindowController.swift ├── collectionPrefs │ ├── CollectionPrefs.storyboard │ ├── CollectionPrefsViewController.swift │ ├── CollectionPrefsWindowController.swift │ ├── DefsRemoved.swift │ └── FileExtensionPicker.swift ├── collector │ ├── KnownFileBase.swift │ ├── KnownFileNode.swift │ ├── KnownFileNodeType.swift │ ├── KnownFiles.swift │ └── KnownFilesTreeIterator.swift ├── counts │ ├── Counts.storyboard │ ├── CountsViewController.swift │ └── CountsWindowController.swift ├── dateInsert │ ├── DateInsert.storyboard │ ├── DateInsertViewController.swift │ └── DateInsertWindowController.swift ├── displayPrefs │ ├── CocoaFontsDataSource.swift │ ├── DisplayPrefs.storyboard │ ├── DisplayPrefsViewController.swift │ ├── DisplayPrefsWindowController.swift │ └── FontSizeDataSource.swift ├── editPrefs │ ├── EditPrefs.storyboard │ ├── EditPrefsViewController.swift │ └── EditPrefsWindowController.swift ├── experiment │ ├── ViewExpViewController.swift │ ├── ViewExpWindowController.swift │ └── ViewExperiment.storyboard ├── export │ ├── Export.storyboard │ ├── ExportViewController.swift │ ├── ExportWindowController.swift │ └── Exporter.swift ├── fieldRename │ ├── FieldRename.storyboard │ ├── FieldRenameAction.swift │ ├── FieldRenameParms.swift │ ├── FieldRenameViewController.swift │ └── FieldRenameWindowController.swift ├── filenew │ ├── NewCollection.storyboard │ ├── NewCollectionViewController.swift │ ├── NewCollectionWindowController.swift │ ├── NewFieldsViewController.swift │ ├── NewLocationViewController.swift │ └── NewNameViewController.swift ├── idPrefs │ ├── IdPrefs.storyboard │ ├── IdPrefsViewController.swift │ └── IdPrefsWindowController.swift ├── import │ ├── Import.storyboard │ ├── ImportViewController.swift │ └── ImportWindowController.swift ├── intentHandlers │ ├── AddNoteFromTextIntentHandler.swift │ ├── GetNoteFilePathIntentHandler.swift │ ├── GetNoteSharingLinkIntentHandler.swift │ ├── GetNoteTitleIntentHandler.swift │ ├── OpenQuickActionIntentHandler.swift │ └── RunScriptIntentHandler.swift ├── linkCleaner │ ├── LinkCleaner.storyboard │ ├── LinkCleanerViewController.swift │ └── LinkCleanerWindowController.swift ├── logging │ ├── Log.storyboard │ ├── LogViewController.swift │ └── LogWindowController.swift ├── medium │ ├── MediumAuthViewController.swift │ ├── MediumPub.storyboard │ ├── MediumPubViewController.swift │ ├── MediumPubWindowController.swift │ └── MediumTabViewController.swift ├── microblog │ ├── MicroBlog.storyboard │ ├── MicroBlogViewController.swift │ └── MicroBlogWindowController.swift ├── models │ ├── 01 - Basic Notes │ │ ├── - README.txt │ │ ├── Notenik.txt │ │ └── template.txt │ ├── 02 - Notenik Intro │ │ ├── - README.txt │ │ ├── Adding a Note.txt │ │ ├── Another Way of Editing.txt │ │ ├── Collection Preferences.txt │ │ ├── Collections and Fields.txt │ │ ├── Consult the Knowledge Base.txt │ │ ├── Creating a New Collection.txt │ │ ├── Deleting a Note.txt │ │ ├── Markdown.txt │ │ ├── Navigating through a Collection.txt │ │ ├── Tags.txt │ │ ├── The Collection Window.txt │ │ ├── The Display Tab.txt │ │ ├── The Edit Tab.txt │ │ ├── The Link Field.txt │ │ ├── The List Tab.txt │ │ ├── Welcome to Notenik .txt │ │ ├── files │ │ │ ├── Another Way of Editing | screenshot.jpg │ │ │ ├── Collection Preferences | screenshot.jpg │ │ │ ├── Markdown | screenshot.png │ │ │ ├── Navigating through a Collection | screenshot.jpg │ │ │ ├── Tags | screenshot.jpg │ │ │ ├── The Collection Window | screenshot.jpg │ │ │ ├── The Display Tab | screenshot.jpg │ │ │ ├── The Edit Tab | screenshot.jpg │ │ │ ├── The Link Field | screenshot.png │ │ │ └── The List Tab | screenshot.jpg │ │ └── template.txt │ ├── 03 - Web Links │ │ ├── - README.txt │ │ ├── Notenik.txt │ │ └── template.txt │ ├── 04 - To Do │ │ ├── - README.txt │ │ ├── Rate and Review Notenik in the Mac App Store.txt │ │ └── template.txt │ ├── 05 - Sequenced List │ │ ├── - README.txt │ │ ├── Download Notenik from the Mac App Store.txt │ │ ├── Look over the Notenik Intro.txt │ │ └── template.txt │ ├── 06 - Zettelkasten │ │ ├── - README.txt │ │ ├── Notenik.txt │ │ ├── Zettelkasten.txt │ │ ├── alias.txt │ │ └── template.txt │ ├── 07 - Blog │ │ ├── index.html │ │ ├── my-second-blog-post.html │ │ ├── my-very-first-blog-post.html │ │ └── notes │ │ │ ├── - README.txt │ │ │ ├── My Second Blog Post.md │ │ │ ├── My Very First Blog Post.md │ │ │ ├── mirror │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ └── templates │ │ │ │ ├── index_mirror.html │ │ │ │ └── note_mirror.html │ │ │ └── template.md │ ├── 08 - Commonplace book │ │ ├── - README.txt │ │ ├── Definition of a Commonplace book.md │ │ ├── Outside of a dog.md │ │ ├── Playful - rebellious and immature.md │ │ ├── The exercise of the intellect.md │ │ └── template.md │ ├── 09 - Outline │ │ ├── - README.txt │ │ ├── The Second Chapter.mdtext │ │ ├── The Top Container for your Outline.mdtext │ │ ├── The first chapter.mdtext │ │ ├── The first section.mdtext │ │ ├── The first subsection.mdtext │ │ └── template.mdtext │ ├── 10 - Web Book │ │ ├── - README.txt │ │ ├── First Chapter.md │ │ ├── Fourth Chapter.md │ │ ├── Second Chapter.md │ │ ├── Third Chapter.md │ │ └── template.md │ ├── 11 - Commonplace with Lookups │ │ ├── - INFO-parent-realm.nnk │ │ ├── author-notes │ │ │ ├── - README.txt │ │ │ ├── Abraham Lincoln.txt │ │ │ ├── Alan Lightman.txt │ │ │ ├── Albert Einstein.txt │ │ │ ├── Allen Ginsberg.txt │ │ │ ├── Am-lie Rorty.txt │ │ │ ├── Anthony M - Kennedy.txt │ │ │ ├── David Foster Wallace.txt │ │ │ ├── Ray Bradbury.txt │ │ │ ├── Raymond Chandler.txt │ │ │ ├── Ross MacDonald.txt │ │ │ ├── Steve Jobs.txt │ │ │ ├── Thomas Jefferson.txt │ │ │ ├── Tom Robbins.txt │ │ │ └── template.txt │ │ ├── book │ │ │ ├── - README.txt │ │ │ ├── Down These Mean Streets.txt │ │ │ ├── Ignorant and Free.txt │ │ │ ├── Learning how to exercise some control over how and what you think.txt │ │ │ ├── Only a Human Being.txt │ │ │ ├── People ask me to predict the future.txt │ │ │ ├── The Extent of Freedom in All of its Dimensions.txt │ │ │ ├── The World is a Wonderfully Weird Place.txt │ │ │ ├── The legitimate object of government.txt │ │ │ ├── The more they yearned for omnipotence.txt │ │ │ ├── The sort of organisms that interpret and modify their agency.txt │ │ │ ├── We are idealists and we are realists.txt │ │ │ ├── We have wonderful arguments.txt │ │ │ ├── Words that are empowered that make your hair stand on end.txt │ │ │ └── template.txt │ │ └── sources │ │ │ ├── - README.txt │ │ │ ├── Beyond 1984 - The People Machines.txt │ │ │ ├── Commencement Address at Kenyon College - 2005.txt │ │ │ ├── D8 Conference.txt │ │ │ ├── Fragment on Government.txt │ │ │ ├── Gracie Goes to Schooner School.txt │ │ │ ├── No Direction Home.txt │ │ │ ├── Searching for Stars on an Island in Maine.txt │ │ │ ├── Supreme Court Decision on Same-Sex Marriage.txt │ │ │ ├── The Collected Papers of Albert Einstein.txt │ │ │ ├── The Identities of Persons.txt │ │ │ ├── The Simple Art of Murder.txt │ │ │ ├── The Zebra-Striped Hearse.txt │ │ │ ├── To Colonel Charles Yancey.txt │ │ │ └── template.txt │ ├── 12 - Website │ │ ├── README.md │ │ ├── content │ │ │ ├── - README.txt │ │ │ ├── About.mdtext │ │ │ ├── And Yet Another Post.mdtext │ │ │ ├── Index.mdtext │ │ │ ├── My First Post.mdtext │ │ │ ├── My Second Post.mdtext │ │ │ ├── Notenik.mdtext │ │ │ ├── files │ │ │ │ └── Notenik | Notenik on MB Air.png │ │ │ ├── temp_display.html │ │ │ └── template.mdtext │ │ ├── factory │ │ │ ├── includes-gen │ │ │ │ └── teasers.html │ │ │ ├── includes │ │ │ │ ├── back-to-top.html │ │ │ │ ├── footer.html │ │ │ │ ├── head-links.html │ │ │ │ └── header.html │ │ │ ├── templates │ │ │ │ ├── page-template.html │ │ │ │ ├── post-template.html │ │ │ │ └── teasers-template.html │ │ │ └── web-gen.tcz │ │ ├── resources │ │ │ ├── - README.txt │ │ │ ├── Notenik Knowledge Base - App.mdtext │ │ │ ├── Notenik Knowledge Base - Web.mdtext │ │ │ ├── Notenik Website.mdtext │ │ │ └── template.mdtext │ │ └── web │ │ │ └── css │ │ │ └── styles.css │ ├── 13 - Contacts │ │ ├── - README.txt │ │ ├── Herb Bowie.txt │ │ └── template.txt │ ├── 14 - Travel Planner │ │ ├── - README.txt │ │ ├── Flight to XXX.mdtext │ │ ├── Trip to XXX.mdtext │ │ └── template.mdtext │ ├── 15 - Code Snippets │ │ ├── - README.txt │ │ ├── Merge Template Back Links.mdtext │ │ ├── Merge Template Commands.mdtext │ │ └── template.mdtext │ └── 16 - HTML for People demo │ │ ├── README.md │ │ ├── content │ │ └── pages │ │ │ ├── - README.txt │ │ │ ├── Index.txt │ │ │ ├── temp_display.html │ │ │ └── template.txt │ │ ├── factory │ │ ├── scripts │ │ │ ├── chapter 01 - build script.tsv │ │ │ ├── chapter 02 - build script.tsv │ │ │ ├── chapter 04 - build script.tsv │ │ │ └── chapter 05 - build script.tsv │ │ └── templates │ │ │ ├── chapter 01 - page template.html │ │ │ ├── chapter 02 - page template.html │ │ │ ├── chapter 04 - page template.html │ │ │ ├── chapter 05 - nav clear template.html │ │ │ ├── chapter 05 - nav template.html │ │ │ └── chapter 05 - page template.html │ │ └── resources │ │ ├── - README.txt │ │ ├── Markdown Cheat Sheet.mdtext │ │ ├── Markdown Syntax page from Daring Fireball.mdtext │ │ ├── Notenik Knowledge Base - App.mdtext │ │ ├── Notenik Knowledge Base - Web.mdtext │ │ ├── Notenik Website.mdtext │ │ └── template.mdtext ├── navigator │ ├── Navigator.storyboard │ ├── NavigatorFolder.swift │ ├── NavigatorViewController.swift │ └── NavigatorWindowController.swift ├── newWithOptions │ ├── NewWithOptions.storyboard │ ├── NewWithOptionsViewController.swift │ └── NewWithOptionsWindowController.swift ├── newicloud │ ├── NewICloud.storyboard │ ├── NewICloudViewController.swift │ ├── NewICloudWindowController.swift │ └── PrefsTabViewController.swift ├── news │ ├── News.storyboard │ ├── NewsViewController.swift │ └── NewsWindowController.swift ├── notenik.iconset │ ├── 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 ├── notepicker │ ├── NotePicker.storyboard │ ├── NotePickerViewController.swift │ ├── NotePickerWindowController.swift │ └── NoteToPick.swift ├── prefs │ ├── AppPrefsCocoa.swift │ ├── CocoaFontPrefs.swift │ ├── CocoaFontUsage.swift │ ├── FavoritesPrefsViewController.swift │ ├── GeneralPrefsViewController.swift │ ├── MarkdownPrefsViewController.swift │ ├── Preferences.storyboard │ ├── PrefsTabVC.swift │ ├── PrefsTabViewController.swift │ ├── PrefsWindowController.swift │ └── TagsExportViewController.swift ├── queryBuilder │ ├── QueryBuilder.storyboard │ ├── QueryBuilderViewController.swift │ └── QueryBuilderWindowController.swift ├── queryOutput │ ├── QueryOutput.storyboard │ ├── QueryOutputLauncher.swift │ ├── QueryOutputViewController.swift │ └── QueryOutputWindowController.swift ├── quick │ ├── QuickAction.storyboard │ ├── QuickActionFolder.swift │ ├── QuickActionViewController.swift │ └── QuickActionWindowController.swift ├── resolver │ └── NoteLinkResolverCocoa.swift ├── script │ ├── Script.storyboard │ ├── ScriptViewController.swift │ └── ScriptWindowController.swift ├── seqOutline │ ├── NoteActionType.swift │ ├── SeqOutline.storyboard │ └── SeqOutlineViewController.swift ├── seqmod │ ├── SeqMod.storyboard │ ├── SeqModViewController.swift │ └── SeqModWindowController.swift ├── share │ ├── Share.storyboard │ ├── ShareViewController.swift │ └── ShareWindowController.swift ├── tags │ ├── TagsMassChange.storyboard │ ├── TagsMassChangeViewController.swift │ └── TagsMassChangeWindowController.swift ├── tagsAssign │ ├── TagsAssign.storyboard │ ├── TagsAssignViewController.swift │ └── TagsAssignWindowController.swift ├── views │ ├── AKAView.swift │ ├── AuthorDataSource.swift │ ├── AuthorView.swift │ ├── AuxTextView.swift │ ├── BodyView.swift │ ├── BodyViewDelegate.swift │ ├── BooleanView.swift │ ├── Calendar.storyboard │ ├── CalendarViewController.swift │ ├── CalendarWindowController.swift │ ├── CodeView.swift │ ├── ComboData.swift │ ├── ComboDataSource.swift │ ├── ComboItem.swift │ ├── ComboView.swift │ ├── DateView.swift │ ├── DirectionsView.swift │ ├── DurationView.swift │ ├── FileAttachView.swift │ ├── FileDropView.swift │ ├── ImageNameView.swift │ ├── IncludeChildrenView.swift │ ├── KlassDataSource.swift │ ├── KlassView.swift │ ├── LabelView.swift │ ├── LevelView.swift │ ├── LinkView.swift │ ├── LongTextView.swift │ ├── LookupDataSource.swift │ ├── LookupView.swift │ ├── MacEditView.swift │ ├── PageStyleView.swift │ ├── PersonView.swift │ ├── PickListDataSource.swift │ ├── PickListView.swift │ ├── RankDataSource.swift │ ├── RankView.swift │ ├── ShortIdView.swift │ ├── StatusDataSource.swift │ ├── StatusView.swift │ ├── StringView.swift │ ├── TagsTokenDelegate.swift │ ├── TagsView.swift │ ├── TeaserView.swift │ ├── TextFormatView.swift │ ├── ViewFactory.swift │ ├── WorkTitleDataSource.swift │ ├── WorkTitleView.swift │ ├── WorkTypeDataSource.swift │ └── WorkTypeView.swift └── wikiQuote │ ├── WikiQuote.storyboard │ ├── WikiQuoteViewController.swift │ └── WikiQuoteWindowController.swift ├── NotenikTests ├── AuthorValueTests.swift ├── BigStringReaderTests.swift ├── DateUtilsTests.swift ├── DateValueTests.swift ├── FieldDefinitionTests.swift ├── FieldLabelTests.swift ├── FileIOTests.swift ├── FileNameTests.swift ├── FileUtilsTests.swift ├── Info.plist ├── LineParserTests.swift ├── LinkValueTests.swift ├── LongTextValueTests.swift ├── MarkedupTests.swift ├── MkdownParserTests.swift ├── NotenikTests.swift ├── RecursValueTests.swift ├── SeqValueTests.swift ├── StatusValueConfigTests.swift ├── StatusValueTests.swift ├── StringConverterTests.swift ├── StringUtilsTests.swift ├── StringValueTests.swift ├── TagsValueTests.swift └── TitleValueTests.swift ├── NotenikUITests ├── Info.plist └── NotenikUITests.swift ├── README.md └── Test Collections ├── - INFO-parent-realm.nnk ├── Adjust Edit Font Name and Size ├── - README.txt ├── Notenik.mdtext ├── Test Note.mdtext └── template.mdtext ├── Adjust Edit Font Size ├── - README.txt ├── A Test Note.txt ├── Another Test Note.txt ├── Notenik.txt ├── Third Test Note.txt └── template.txt ├── Alternate Field Names ├── - README.txt ├── Hans.txt ├── John Smith.txt ├── Liberty Valance.txt ├── Lucy Smith.txt ├── Sharon Bowie.txt └── template.txt ├── Attachments ├── - README.txt ├── And One More.txt ├── And Yet Another.txt ├── And now a localhost image.txt ├── Another Note.txt ├── Let-s try an image.txt ├── files │ ├── Another Note | text file 2.txt │ └── Another Note | text file.txt └── template.txt ├── Backlinks Test ├── - README.txt ├── And another Wiki link.txt ├── Here-s a Wikilink.txt ├── Notenik.txt ├── display.css ├── display.html └── template.txt ├── Backlinks between Collections ├── - README.txt ├── Down These Mean Streets.txt ├── Ignorant and Free.txt ├── Learning how to exercise some control over how and what you think.txt ├── Only a Human Being.txt ├── People ask me to predict the future.txt ├── The Extent of Freedom in All of its Dimensions.txt ├── The World is a Wonderfully Weird Place.txt ├── The more they yearned for omnipotence.txt ├── The sort of organisms that interpret and modify their agency.txt ├── We are idealists and we are realists.txt ├── We have wonderful arguments.txt ├── Words that are empowered that make your hair stand on end.txt ├── author-works │ ├── - README.txt │ ├── Beyond 1984 - The People Machines.txt │ ├── Commencement Address at Kenyon College - 2005.txt │ ├── D8 Conference.txt │ ├── Fragment on Government.txt │ ├── Gracie Goes to Schooner School.txt │ ├── No Direction Home.txt │ ├── Searching for Stars on an Island in Maine.txt │ ├── Supreme Court Decision on Same-Sex Marriage.txt │ ├── The Collected Papers of Albert Einstein.txt │ ├── The Identities of Persons.txt │ ├── The Simple Art of Murder.txt │ ├── The Zebra-Striped Hearse.txt │ ├── To Colonel Charles Yancey.txt │ ├── author-notes │ │ ├── - README.txt │ │ ├── Abraham Lincoln.txt │ │ ├── Alan Lightman.txt │ │ ├── Albert Einstein.txt │ │ ├── Allen Ginsberg.txt │ │ ├── Amélie Rorty.txt │ │ ├── Anthony M - Kennedy.txt │ │ ├── David Foster Wallace.txt │ │ ├── John Hiatt.txt │ │ ├── Ray Bradbury.txt │ │ ├── Raymond Chandler.txt │ │ ├── Ross MacDonald.txt │ │ ├── Steve Jobs.txt │ │ ├── The Grateful Dead.txt │ │ ├── Thomas Jefferson.txt │ │ ├── Tom Robbins.txt │ │ ├── Woody Allen.txt │ │ └── template.txt │ └── template.txt └── template.txt ├── Backlinks with Compound Keys ├── - README.txt ├── Note 1 20240426195843.txt ├── Note 2 20240426195900.txt ├── Note 3 20240426200016.txt ├── alias.txt └── template.txt ├── Changing File Extensions ├── - README.txt ├── Another Note.md ├── Note Number 3.md ├── Notenik.md └── template.md ├── Collection Prefs ├── This is a Sample Note.txt └── template.txt ├── Combo Wombo ├── - README.txt ├── Bob.txt ├── Herbert.txt ├── James.txt ├── Jim.txt ├── Josephine.txt ├── Robert.txt ├── Roberto.txt ├── Rollo.txt └── template.txt ├── Commonplace Test ├── - INFO-parent-realm.nnk ├── test-authors │ ├── - README.txt │ ├── Abraham Lincoln.txt │ ├── Alan Lightman.txt │ ├── Albert Einstein.txt │ ├── Allen Ginsberg.txt │ ├── Amélie Rorty.txt │ ├── Anthony M - Kennedy.txt │ ├── David Foster Wallace.txt │ ├── Henry Miller.txt │ ├── Ray Bradbury.txt │ ├── Raymond Chandler.txt │ ├── Ross MacDonald.txt │ ├── Steve Jobs.txt │ ├── Thomas Jefferson.txt │ ├── Tom Robbins.txt │ └── template.txt ├── test-quotes │ ├── - README.txt │ ├── Down These Mean Streets.txt │ ├── Ignorant and Free.txt │ ├── Learning how to exercise some control over how and what you think.txt │ ├── Obscenity is a cleansing process.txt │ ├── Only a Human Being.txt │ ├── People ask me to predict the future.txt │ ├── The Extent of Freedom in All of its Dimensions.txt │ ├── The World is a Wonderfully Weird Place.txt │ ├── The legitimate object of government.txt │ ├── The more they yearned for omnipotence.txt │ ├── The sort of organisms that interpret and modify their agency.txt │ ├── We are idealists and we are realists.txt │ ├── We have wonderful arguments.txt │ ├── Words that are empowered that make your hair stand on end.txt │ └── template.txt └── test-works │ ├── - README.txt │ ├── Beyond 1984 - The People Machines.txt │ ├── Big Sur and the Oranges of Hieronymous Bosch.txt │ ├── Commencement Address at Kenyon College - 2005.txt │ ├── D8 Conference.txt │ ├── Fragment on Government.txt │ ├── Gracie Goes to Schooner School.txt │ ├── Henry Miller Interview from 1961.txt │ ├── Henry Miller on Writing.txt │ ├── No Direction Home.txt │ ├── Searching for Stars on an Island in Maine.txt │ ├── Supreme Court Decision on Same-Sex Marriage.txt │ ├── The Air-Conditioned Nightmare.txt │ ├── The Collected Papers of Albert Einstein.txt │ ├── The Identities of Persons.txt │ ├── The Simple Art of Murder.txt │ ├── The Zebra-Striped Hearse.txt │ ├── To Colonel Charles Yancey.txt │ └── template.txt ├── Copy Cut Paste 1 ├── - README.txt ├── Notenik.txt ├── Test Note 1a.txt ├── Test Note 1b.txt ├── Test Note 1c.txt └── template.txt ├── Copy Cut Paste 2 ├── - README.txt ├── Notenik.txt └── template.txt ├── Daily Log ├── - README.txt ├── Notenik.txt ├── Test Log Note.txt └── template.txt ├── Date Recurs ├── - README.txt ├── Daily.txt ├── Every Monday.txt ├── Every Month.txt ├── Every other Monday.txt ├── Same Date Every Month.txt ├── Second Tuesday of Every Month.txt ├── Send Out Board Meeting Reminder and Agenda.txt ├── Weekdays.txt └── template.txt ├── Date Testing ├── - README.txt ├── Date for Today.txt ├── Dates with Times.txt ├── Rate and Review Notenik in the Mac App Store.txt └── template.txt ├── Deleting Notes ├── - README.txt ├── Note Number 1.txt ├── Note Number 2.txt ├── Note Number 3.txt └── template.txt ├── Display Template ├── - README.txt ├── A Second Note.txt ├── And A Third Note.txt ├── MathJax Example.txt ├── Notenik.txt ├── display.css ├── display.html └── template.txt ├── Diverse Formats ├── 20180813 Chineham chat article.txt ├── 20191127 Funeral Service Yvonne Andrews.md ├── 20191224 Christmas Eve HC sermon.md ├── Another YAML example.mdtext ├── Feedback for the Version One Course on Zettelkasten.txt ├── Good Old Notenik Note.txt ├── Info - Alfred Menu Search details.md ├── Info - Solarized Colors.txt ├── MMD Note.md ├── Note with No Body Label.txt ├── Note with No Labels.txt ├── Note with YAML Frontmatter.txt ├── Plain Text Note.txt ├── Writing - 100 Best Writing Websites- 2017 Edition.md ├── YAML with Aliase.txt └── YAML with Authors.txt ├── Drag and Drop ├── - README.txt ├── Notenik.txt ├── RE - Seattle Indivisible Communications and Members of Congress TeamMeeting 5-14.txt └── template.txt ├── Duplicates ├── - README.txt ├── Notenik 1.txt ├── Notenik 2.txt ├── Notenik 3.txt ├── Notenik.txt └── template.txt ├── Field Types ├── - README.txt ├── Author 1.txt ├── Author 2.txt ├── Notenik.txt └── template.txt ├── Footnotes with Short IDs ├── - README.txt ├── A Footnote with a Link.txt ├── And Another Footnote Sample.txt ├── Another Footnote Sample.txt ├── Citations.txt ├── Footnotes and Citations.txt ├── Footnotes from the Markdown Guide.txt ├── Footnotes.txt ├── Notenik.txt ├── reports │ ├── concatenate_template.html │ ├── query_script.tcz │ └── query_template.html └── template.txt ├── Hook Integration ├── - README.txt ├── Adding Yet Another New Note.txt ├── Adding a New Note on Saturday afternoon at 2-44.txt ├── And Another New Note from Applescript.txt ├── Another New Note from Applescript.txt ├── Another New Note on 2022-03-26.txt ├── Another Saturday Note.txt ├── New Note Added on 2022-03-26.txt ├── New Note from Applescript on 26 Mar 2022 at 2-05 pm.txt ├── New Note from Applescript on 26 Mar 2022 at 4-29 pm.txt ├── New Note from Applescript.txt ├── New Note on Sat at 02-58 pm.txt ├── New Note on Sat at 3-27 pm.txt ├── Note Linking to New Note.txt ├── Notenik.txt ├── One More New Note from Applescript.txt ├── Saturday Note at 03-35 pm.txt ├── Saturday Note at 4-24 pm.txt └── template.txt ├── If Else ├── - README.txt ├── Note 1.txt ├── Note Number 4.txt ├── Second Note.txt ├── Third Note.txt ├── reports │ ├── if-else test template.html │ └── if-else test.html └── template.txt ├── Inc Major ├── - README.txt ├── Group A - Note 1.txt ├── Group A - Note 2.txt ├── Group B - Note 1.txt ├── Group B - Note 2.txt ├── Group D - Note 1.txt ├── Group D - Note 2.txt └── template.txt ├── Infinite Seq Levels ├── - README.txt ├── Notetitle1.mdtext ├── Notetitle2.mdtext ├── Notetitle3.mdtext ├── Notetitle4.mdtext ├── Notetitle5.mdtext ├── Notetitle6.mdtext ├── Notetitle7.mdtext ├── Notetitle8.mdtext ├── Notetitle9.mdtext ├── The Top Container for your Outline.mdtext ├── The first chapter.mdtext ├── The first section.mdtext ├── The first subsection.mdtext └── template.mdtext ├── Inline Hashtags ├── - README.txt ├── Headings become tags.txt ├── Inline Tags Test 1.txt ├── Notenik.txt ├── Original Example.txt └── template.txt ├── Limited Fields ├── - README.txt ├── Notenik.md ├── Test Doc.md └── template.md ├── Link Tester ├── - README.txt ├── Intro.txt ├── Link to another Note within Body.txt ├── Mailto link within Body.txt ├── Mailto link within Link field.txt ├── alias.txt ├── http link within Body.txt ├── http link within Link field.txt ├── https link within Body.txt ├── https link within Link field.txt ├── template.txt ├── x-bbedit test within Link field.txt └── x-bbedit within Body.txt ├── MD Headers ├── Markdown Headers Test template.html ├── Markdown Headers Test.html ├── Markdown Headers Test.tcz ├── Markdown with Headers.md └── reports │ ├── report template.html │ └── report.html ├── MMD with Backlinks ├── - README.txt ├── Note 1.txt ├── Note 2.txt ├── Note 3.txt ├── Notenik.txt └── template.txt ├── Markdown Trickery ├── - INFO-parent-realm.nnk ├── Writings │ ├── - README.txt │ ├── John Hiatt.mdtext │ ├── Notenik.mdtext │ ├── One Family - One Earth - One Future.mdtext │ ├── Settin' The Woods on Fire.mdtext │ ├── Slow Turning.mdtext │ ├── Sugar Magnolia.mdtext │ ├── The Grateful Dead.mdtext │ └── template.mdtext └── authors │ ├── - README.txt │ ├── Bob Weir.mdtext │ ├── Joe Biden.mdtext │ ├── Notenik.mdtext │ ├── Robert Hunter.mdtext │ ├── The Grateful Dead.mdtext │ ├── modi.mdtext │ └── template.mdtext ├── Meeting Notes ├── - README.txt ├── 2023-09-27 Access Labs Monthly Meeting Agenda.txt ├── 2023-10-28 Access Labs Monthly Meeting Agenda.txt ├── 2023-11-28 Access Labs Monthly Meeting Agenda.txt ├── 2023-12-28 Access Labs Monthly Meeting Agenda.txt ├── 2024-01-28 Access Labs Monthly Meeting Agenda.txt ├── 2024-02-28 Access Labs Monthly Meeting Agenda.txt ├── 2024-03-28 Access Labs Monthly Meeting Agenda.txt ├── Notenik.txt ├── agenda.txt └── template.txt ├── Missing Link Targets ├── - README.txt ├── A Note Pointing to Another Note.txt ├── Another Note Pointing to a Second Note.txt ├── Notenik.txt ├── Open Source Software.txt ├── completely free.txt └── template.txt ├── Mixed Status Values ├── - README.txt ├── Note 1 - 0 - Idea.txt ├── Note 2 - 9 - closed.txt ├── Note 3 - draft.txt ├── Note 4 - published.txt ├── Note 5 - canceled.txt ├── Note 6 - No status.txt ├── Rate and Review Notenik in the Mac App Store.txt └── template.txt ├── MultiMarkdown Documents ├── A Sample MultiMarkdown Document.md ├── A Second MultiMarkdown Document.md ├── A Third MultiMarkdown Doc.md ├── Adding Another Through Notenik.md ├── And Even One More Sample MultiMarkdown Document.md ├── And One More Sample MultiMarkdown Document.md └── Yet Another Sample MultiMarkdown Document.md ├── Multiple NSTextView fields ├── - README.txt ├── Auden Quote.txt ├── Latest Version Notes.txt ├── Notenik Forum.txt ├── Notenik.txt └── template.txt ├── New Collection ├── - README.txt ├── Notenik.md ├── Our Second Note.md ├── reports │ └── sample report template.html └── template.md ├── Note Selector 1 ├── - README.txt ├── Copy Notenik URL from ns0.txt ├── Copy Timestamp from ns0.txt ├── Copy Title from ns0.txt ├── Copy Wikilink from ns0.txt ├── Copy and Paste Timestamp from ns0.txt ├── Copy and Paste Title from ns0.txt ├── Copy and Paste Wikilink from ns0.txt ├── Copy.txt ├── Notenik.txt └── template.txt ├── Note Selector 2 ├── - README.txt ├── Copy Title from NS0.txt ├── Notenik.txt └── template.txt ├── Note Selector Tests ├── - README.txt ├── Copy Title.txt ├── Copy Wikilink.txt ├── Copy and Paste Timestamp.txt ├── Copy and Paste Title.txt ├── Copy and Paste Wikilink.txt ├── Link to Web.txt ├── Notenik.txt ├── alias.txt └── template.txt ├── Note Title Display ├── - README.txt ├── Download Notenik from the Mac App Store.txt ├── Heading Sizes.txt ├── Look over the Notenik Intro.txt └── template.txt ├── Note linkage ├── - README.txt ├── 2nd Note to Link From.txt ├── 2nd Note to Link To.txt ├── 3rd Note to Link From.txt ├── 3rd Note to Link To.txt ├── 4th Note to Link From.txt ├── 5th Note to Link From.txt ├── Note to Link From.txt ├── Note to Link To.txt ├── Notenik.txt ├── alias.txt └── template.txt ├── OPML Import ├── - README.txt ├── Chapter 1.txt ├── Chapter 2.txt ├── Chapter 3.txt ├── First Section.txt ├── Notenik.txt ├── Second Section.txt ├── Some Details.txt ├── Test Outline for export to Notenik.txt └── template.txt ├── Outlining ├── - README.txt ├── A Section about Films.txt ├── A Section about Songs.txt ├── All about Art.txt ├── Dire Wolf.txt ├── New Speedway Boogie.txt ├── Songs by Chuck Berry.txt ├── Songs by the Grateful Dead.txt ├── The Promised Land.txt ├── Uncle John-s Band.txt └── template.txt ├── Plain Markdown Files ├── A Markdown File with Tags.md ├── A Markdown File.md └── Added Markdown File with Tags.md ├── Plain Text files ├── Added Plain Text File.txt ├── And a Fourth File.txt ├── Another Plain Text File.txt └── First Plain Text File.txt ├── Queries and Reports ├── - README.txt ├── Create a Report Sample and Run it.txt ├── Run the Sample Report from the Reports menu.txt ├── Test Queries - Reports - Scripts and Merge Templates.txt ├── display.html ├── reports │ ├── sample report template.html │ └── sample report template.md └── template.txt ├── Related Collections └── Authors │ ├── - README.txt │ ├── Notenik.txt │ └── template.txt ├── Report Samples ├── - README.txt ├── Test Note 1.txt ├── Test Note 2.txt ├── Test Note 3.txt ├── reports │ └── sample report template.html └── template.txt ├── Scrolling Sync 1 ├── - README.txt ├── Notes on Scrolling.txt ├── When I Paint My Masterpiece.txt ├── files │ └── When I Paint My Masterpiece | Bob Dylan with The Band.jpg.jpg └── template.txt ├── Seq 1 ├── - README.txt ├── Fifth Note.txt ├── First Note.txt ├── Fourth Note.txt ├── Second Note.txt ├── Third Note.txt └── template.txt ├── Set Command ├── - README.txt ├── Note Number 1.txt ├── Note Number 2.txt ├── Note Number 3.txt ├── reports │ ├── set-command-test-template.html │ └── set-command-test.html └── template.txt ├── Short IDs ├── - README.txt ├── Not Only Text Either.txt ├── Notenik.txt ├── That-s No Way to Say Goodbye or Hello Either and I Wish You Wouldn-t.txt ├── When You Wish Upon a Star.txt └── template.txt ├── Snippets 1 ├── - README.txt ├── Another Coding Snippet.txt ├── Coding Snippet.txt ├── Notenik.txt └── template.txt ├── Stashing Tests ├── - INFO-parent-realm.nnk ├── Stashing Collection 1 │ ├── - notenik_files │ │ ├── - README.txt │ │ ├── alias.txt │ │ ├── display.css │ │ ├── display.html │ │ └── template.txt │ ├── Rate and Review Notenik.txt │ └── Referring note.txt └── Stashing Collection 2 │ ├── - README.txt │ ├── Notenik.txt │ ├── Zettelkasten.txt │ ├── alias.txt │ └── template.txt ├── Subfolders - Basic ├── - README.txt ├── Project A │ ├── - README.txt │ ├── Task 001.txt │ └── template.txt ├── Project B │ ├── - README.txt │ ├── Task 002.txt │ └── template.txt ├── reports │ ├── query_script.tcz │ └── query_template.html └── template.txt ├── Table of Contents ├── - README.txt ├── Notenik.txt └── template.txt ├── Tags Mass Change ├── - README.txt ├── Fifth Note.txt ├── First Note.txt ├── Fourth Note.txt ├── Notenik.txt ├── Second Note.txt ├── Third Note.txt └── template.txt ├── Tags Test ├── - README.txt ├── BBEdit.txt ├── Daring Fireball.txt ├── MacBook Air.txt ├── Notenik.txt ├── Obsidian.txt └── template.txt ├── Task Lists with Custom Template ├── - README.txt ├── Notenik.txt ├── Task List.txt ├── display.html └── template.txt ├── Tasks 1 ├── - README.txt ├── Task 1.md ├── Task 2.md ├── Task 3.md ├── Task 4.md └── template.md ├── Text Editing ├── - README.txt ├── Notenik.txt ├── Test Note 1.txt └── template.txt ├── Text File Imports ├── - README.txt ├── 100 Best Writing Websites - 2017 Edition.mdtext ├── Another YAML example.mdtext ├── Good Old Notenik Note.mdtext ├── Note with No Body Label.mdtext ├── Note with No Labels-txt.mdtext ├── Notenik.mdtext ├── files │ └── Notenik | logo.png └── template.mdtext ├── Text Formats with Tabs ├── - README.txt ├── A Plain Text Note.txt ├── Another Note.txt ├── Notenik.md └── template.md ├── Timestamps ├── - README.txt ├── Notenik.txt ├── Test Note 1 - B.txt ├── Test Note 2 - A.txt └── template.txt ├── Variables 1 ├── - README.txt ├── Base File Name Conversion.txt ├── HTML.txt ├── Link Conversion.txt ├── Markdown to HTML.txt ├── Summarization.txt ├── reports │ ├── Test A template.html │ └── Test A.html └── template.txt ├── Version Numbers ├── - README.txt ├── Next Version.txt ├── Notenik.txt ├── Version Number Tests - 001.txt ├── Version Number Tests - 002.txt ├── Version Number Tests - 003.txt ├── Version Numbers Note Title.txt ├── Version the First.txt ├── class │ └── defaults.txt ├── reports │ └── share_template.html └── template.txt ├── YAML Frontmatter ├── A New Markdown file with YAML frontmatter.txt └── A Sample Markdown file with YAML Frontmatter.txt ├── YAML Notes ├── .obsidian │ ├── app.json │ ├── appearance.json │ ├── core-plugins.json │ ├── hotkeys.json │ └── workspace ├── A New New Addition.txt ├── Added YAML Note.txt ├── Another YAML example.txt ├── Note Added with YAML.txt ├── Note with YAML Frontmatter.txt ├── YAML Note with Status.txt ├── YAML with Aliase.txt └── YAML with Authors.txt ├── YAML with Longtext ├── - README.txt ├── Notenik.txt ├── YAML test.txt └── template.txt ├── folder.with.dots ├── - README.txt ├── Notenik.txt ├── sub.folder.1 │ ├── - README.txt │ ├── Task 2.txt │ └── template.txt ├── sub.folder.2 │ ├── - README.txt │ ├── Task 1.txt │ └── template.txt └── template.txt └── iWisdom Import ├── - README.txt ├── Notenik.txt └── template.txt /.gitignore: -------------------------------------------------------------------------------- 1 | Notenik Help/includes/ 2 | /Notenik Features/- INFO.nnk 3 | - INFO.nnk 4 | .DS_Store 5 | /Notenik.xcodeproj/project.xcworkspace/xcuserdata/hbowie.xcuserdatad/UserInterfaceState.xcuserstate 6 | WorkspaceSettings.xcsettings 7 | /Notenik.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved 8 | -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Icon Big Sur Background 1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Icon Big Sur Background 1024.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 1024.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 128.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 16.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 256.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 32.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 512.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 64.ico -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon 64.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/Notenik App Icon.afdesign -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/favicon.ico -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/favicon.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_128x128.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_128x128@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_16x16.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_16x16@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_256x256.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_256x256@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_32x32.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_32x32@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_512x512.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for Big Sur/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for Big Sur/icon_512x512@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/Notenik App Icon 1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/Notenik App Icon 1024.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/Notenik iOS App Icon.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/Notenik iOS App Icon.afdesign -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_1024@1x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_20@1x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_20@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_20@3x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_29@1x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_29@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_29@3x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_40@1x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_40@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_40@3x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_60@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_60@3x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_76@1x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_76@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Notenik Graphics for iOS/icon_83p5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Notenik Graphics for iOS/icon_83p5@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/Quill-3_120px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Quill-3_120px.png -------------------------------------------------------------------------------- /Notenik Logo Files/Screen Shot 2019-06-02 at 2.45.39 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/Screen Shot 2019-06-02 at 2.45.39 PM.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon-1024.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_128x128.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_128x128@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_16x16.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_16x16@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_256x256.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_256x256@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_32x32.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_32x32@2x.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_512x512.png -------------------------------------------------------------------------------- /Notenik Logo Files/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Logo Files/icon_512x512@2x.png -------------------------------------------------------------------------------- /Notenik Screenshots/Screen Shot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Screenshots/Screen Shot 1.png -------------------------------------------------------------------------------- /Notenik Screenshots/Screen Shot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik Screenshots/Screen Shot 2.png -------------------------------------------------------------------------------- /Notenik iOS Journey/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik iOS Journey/Add and Access an Intro Notes Collection.md: -------------------------------------------------------------------------------- 1 | Title: Add and Access an Intro Notes Collection 2 | 3 | Status: 9 - Closed 4 | 5 | Seq: 7 6 | 7 | Date: 19 Feb 2021 8 | -------------------------------------------------------------------------------- /Notenik iOS Journey/Added Needed Frameworks to new iOS Target.md: -------------------------------------------------------------------------------- 1 | Title: Added Needed Frameworks to new iOS Target 2 | 3 | Status: 9 - Closed 4 | 5 | Seq: 6 6 | 7 | Date: 19 Feb 2021 8 | -------------------------------------------------------------------------------- /Notenik iOS Journey/Created new Target Notenik-iOS.md: -------------------------------------------------------------------------------- 1 | Title: Created new Target Notenik-iOS 2 | 3 | Status: 9 - Closed 4 | 5 | Seq: 5 6 | 7 | Date: 19 Feb 2021 8 | -------------------------------------------------------------------------------- /Notenik iOS Journey/Starting Development of iOS version of Notenik.md: -------------------------------------------------------------------------------- 1 | Title: Starting Development of iOS version of Notenik 2 | 3 | Timestamp: 20210219224514 4 | 5 | Status: 9 - Closed 6 | 7 | Seq: 1 8 | 9 | Date: 19 Feb 2021 10 | -------------------------------------------------------------------------------- /Notenik iOS Journey/Subscribed to Ray Wenderlich.md: -------------------------------------------------------------------------------- 1 | Title: Subscribed to Ray Wenderlich 2 | 3 | Link: https://www.raywenderlich.com/ 4 | 5 | Timestamp: 20210219224951 6 | 7 | Status: 9 - Closed 8 | 9 | Seq: 3 10 | 11 | Date: 19 Feb 2021 12 | 13 | Body: 14 | 15 | For tutorials, books, etc. 16 | -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "colors" : [ 3 | { 4 | "idiom" : "universal" 5 | } 6 | ], 7 | "info" : { 8 | "author" : "xcode", 9 | "version" : 1 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_1024@1x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@1x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@2x-1.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@2x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_20@3x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@1x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@2x-1.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@2x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_29@3x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@1x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@2x-1.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@2x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_40@3x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_60@2x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_60@3x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_76@1x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_76@2x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_83p5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik-iOS/Assets.xcassets/AppIcon.appiconset/icon_83p5@2x.png -------------------------------------------------------------------------------- /Notenik-iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "author" : "xcode", 4 | "version" : 1 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 10.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 10 2 | 3 | Seq: 10 4 | 5 | Body: 6 | 7 | Note Number 10 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 11.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 11 2 | 3 | Seq: 11 4 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 12.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 12 2 | 3 | Seq: 12 4 | 5 | Body: 6 | 7 | Note Number 12 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 13.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 13 2 | 3 | Seq: 13 4 | 5 | Body: 6 | 7 | Note Number 13 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 14.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 14 2 | 3 | Seq: 14 4 | 5 | Body: 6 | 7 | Note Number 14 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 15.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 15 2 | 3 | Seq: 15 4 | 5 | Body: 6 | 7 | Note Number 15 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 6.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 6 2 | 3 | Seq: 6 4 | 5 | Body: 6 | 7 | Note Number 6 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 7.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 7 2 | 3 | Seq: 7 4 | 5 | Body: 6 | 7 | Note Number 7 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 8.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 8 2 | 3 | Seq: 8 4 | 5 | Body: 6 | 7 | Note Number 8 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/Note Number 9.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 9 2 | 3 | Seq: 9 4 | 5 | Body: 6 | 7 | Note Number 9 8 | -------------------------------------------------------------------------------- /Notenik-iOS/intro-ios/template.text: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Seq: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Notenik.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Notenik.xcodeproj/project.xcworkspace/xcuserdata/hbowie.xcuserdatad/IDEFindNavigatorScopes.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Notenik.xcodeproj/xcuserdata/hbowie.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 1024.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 128.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 16.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 256-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 256-1.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 256.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 32-1.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 32.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 512-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 512-1.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 512.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/Assets.xcassets/AppIcon.appiconset/Notenik App Icon 64.png -------------------------------------------------------------------------------- /Notenik/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /Notenik/models/01 - Basic Notes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/01 - Basic Notes/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Body: 6 | 7 | A note-taking system cunningly devised by Herb Bowie. 8 | 9 | Learn more at [Notenik.app](https://notenik.app). 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Notenik/models/01 - Basic Notes/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/Another Way of Editing | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/Another Way of Editing | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/Collection Preferences | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/Collection Preferences | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/Markdown | screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/Markdown | screenshot.png -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/Navigating through a Collection | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/Navigating through a Collection | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/Tags | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/Tags | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/The Collection Window | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/The Collection Window | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/The Display Tab | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/The Display Tab | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/The Edit Tab | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/The Edit Tab | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/The Link Field | screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/The Link Field | screenshot.png -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/files/The List Tab | screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/02 - Notenik Intro/files/The List Tab | screenshot.jpg -------------------------------------------------------------------------------- /Notenik/models/02 - Notenik Intro/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Seq: <seq> 8 | 9 | Image Name: <imagename> 10 | 11 | Image Caption: 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Notenik/models/03 - Web Links/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/03 - Web Links/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.app 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie. 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Notenik/models/03 - Web Links/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Notenik/models/04 - To Do/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/05 - Sequenced List/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/05 - Sequenced List/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Status: 0 - Idea; 1 - Proposed; 2 - Approved; 3 - Planned; 4 - In Work; 5 - Held; 6 - Completed; 7 - FollowUp; 8 - Canceled; 9 - Closed; 8 | 9 | Seq: <seq> 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Notenik/models/06 - Zettelkasten/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/06 - Zettelkasten/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | zettelkasten 20210209215032 3 | -------------------------------------------------------------------------------- /Notenik/models/06 - Zettelkasten/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Timestamp: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Notenik/models/07 - Blog/notes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/07 - Blog/notes/mirror/css/styles.css: -------------------------------------------------------------------------------- 1 | body { 2 | tab-size: 4; font-family: "Verdana", "Helvetica Neue", Helvetica, Arial, sans-serif; 3 | font-size: 12pt } -------------------------------------------------------------------------------- /Notenik/models/08 - Commonplace book/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Notenik/models/08 - Commonplace book/Outside of a dog.md: -------------------------------------------------------------------------------- 1 | Title: Outside of a dog 2 | 3 | Timestamp: 20231026170310 4 | 5 | Author: Groucho Marx 6 | 7 | Work Type: Book 8 | 9 | Quote: 10 | 11 | Outside of a dog, a book is man's best friend. Inside of a dog it's too dark to read. 12 | -------------------------------------------------------------------------------- /Notenik/models/08 - Commonplace book/template.md: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Timestamp: 8 | 9 | Author: <author> 10 | 11 | Work Type: <worktype> 12 | 13 | Work Title: <worktitle> 14 | 15 | Date: <date> 16 | 17 | Quote: <body> 18 | 19 | -------------------------------------------------------------------------------- /Notenik/models/09 - Outline/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/09 - Outline/The Second Chapter.mdtext: -------------------------------------------------------------------------------- 1 | Title: The Second Chapter 2 | 3 | Seq: 1.2 4 | 5 | Level: 3 - Chapter 6 | -------------------------------------------------------------------------------- /Notenik/models/09 - Outline/The first chapter.mdtext: -------------------------------------------------------------------------------- 1 | Title: The First Chapter 2 | 3 | Seq: 1.1 4 | 5 | Level: 3 - Chapter 6 | -------------------------------------------------------------------------------- /Notenik/models/09 - Outline/The first section.mdtext: -------------------------------------------------------------------------------- 1 | Title: The first section 2 | 3 | Seq: 1 4 | 5 | Level: 2 - Section 6 | 7 | Body: 8 | 9 | This text can be formatted using Markdown. 10 | -------------------------------------------------------------------------------- /Notenik/models/09 - Outline/The first subsection.mdtext: -------------------------------------------------------------------------------- 1 | Title: The first subsection 2 | 3 | Seq: 1.1.1 4 | 5 | Level: 4 - Subsection 6 | -------------------------------------------------------------------------------- /Notenik/models/09 - Outline/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Seq: <seq> 8 | 9 | Level: <level: 1 - Top; 2 - Section; 3 - Chapter; 4 - Subsection; > 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Notenik/models/10 - Web Book/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/10 - Web Book/First Chapter.md: -------------------------------------------------------------------------------- 1 | Title: First Chapter 2 | 3 | Seq: 1 4 | 5 | Level: 1 - Book Title 6 | 7 | Body: 8 | 9 | Good stuff. 10 | 11 | -------------------------------------------------------------------------------- /Notenik/models/10 - Web Book/Fourth Chapter.md: -------------------------------------------------------------------------------- 1 | Title: Fourth Chapter 2 | 3 | Seq: 4 4 | 5 | Level: 1 - Book Title 6 | -------------------------------------------------------------------------------- /Notenik/models/10 - Web Book/Second Chapter.md: -------------------------------------------------------------------------------- 1 | Title: Second Chapter 2 | 3 | Seq: 2 4 | 5 | Level: 1 - Book Title 6 | -------------------------------------------------------------------------------- /Notenik/models/10 - Web Book/Third Chapter.md: -------------------------------------------------------------------------------- 1 | Title: Third Chapter 2 | 3 | Seq: 3 4 | 5 | Level: 1 - Book Title 6 | -------------------------------------------------------------------------------- /Notenik/models/10 - Web Book/template.md: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Seq: <seq> 6 | 7 | Level: <level: 1 - Book Title; 2 - Section; 3 - Chapter; > 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/- INFO-parent-realm.nnk: -------------------------------------------------------------------------------- 1 | Title: models 11 - Commonplace with Lookups 2 | 3 | Window Numbers: 317.0;56.0;1073.0;407.0;434.0; 4 | 5 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Abraham Lincoln.txt: -------------------------------------------------------------------------------- 1 | Author: Abraham Lincoln 2 | 3 | Author Info: American statesman and lawyer 4 | 5 | Author Years: 1809-1865 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Abraham_Lincoln 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Alan Lightman.txt: -------------------------------------------------------------------------------- 1 | Author: Alan Lightman 2 | 3 | Author Info: American physicist, writer, and social entrepreneur 4 | 5 | Author Years: 1948- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Alan_Lightman 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Albert Einstein.txt: -------------------------------------------------------------------------------- 1 | Author: Albert Einstein 2 | 3 | Author Info: German-born theoretical physicist 4 | 5 | Author Years: 1879-1955 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Albert_Einstein 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Allen Ginsberg.txt: -------------------------------------------------------------------------------- 1 | Author: Allen Ginsberg 2 | 3 | Author Info: American poet and writer 4 | 5 | Author Years: 1926-1997 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Allen_Ginsberg 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Am-lie Rorty.txt: -------------------------------------------------------------------------------- 1 | Author: Amélie Rorty 2 | 3 | Author Info: Belgian-born American philosopher 4 | 5 | Author Years: 1932-2020 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Amélie_Rorty 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Anthony M - Kennedy.txt: -------------------------------------------------------------------------------- 1 | Author: Anthony M. Kennedy 2 | 3 | Author Info: American lawyer and jurist 4 | 5 | Author Years: 1936- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Anthony_Kennedy 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/David Foster Wallace.txt: -------------------------------------------------------------------------------- 1 | Author: David Foster Wallace 2 | 3 | Author Info: American author of novels, short stories and essays 4 | 5 | Author Years: 1962-2008 6 | 7 | Author Link: https://en.wikipedia.org/wiki/David_Foster_Wallace 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Ray Bradbury.txt: -------------------------------------------------------------------------------- 1 | Author: Ray Bradbury 2 | 3 | Author Info: American author and screenwriter 4 | 5 | Author Years: 1920-2012 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Ray_Bradbury 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Raymond Chandler.txt: -------------------------------------------------------------------------------- 1 | Author: Raymond Chandler 2 | 3 | Author Info: American-British novelist and screenwriter 4 | 5 | Author Years: 1888-1959 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Raymond_Chandler 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Steve Jobs.txt: -------------------------------------------------------------------------------- 1 | Author: Steve Jobs 2 | 3 | Author Info: American business magnate, industrial designer, investor, and media proprietor 4 | 5 | Author Years: 1955-2011 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Steve_Jobs 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/Tom Robbins.txt: -------------------------------------------------------------------------------- 1 | Author: Tom Robbins 2 | 3 | Author Info: American novelist 4 | 5 | Author Years: 1932- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Tom_Robbins 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/author-notes/template.txt: -------------------------------------------------------------------------------- 1 | Author: <title> 2 | 3 | Tags: <tags> 4 | 5 | Author Info: 6 | 7 | Author Years: 8 | 9 | Author Link: <link> 10 | 11 | Author Works: <lookback: sources> 12 | 13 | Author Quotes: <lookback: book> 14 | 15 | Author Notes: <body> 16 | 17 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/book/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/book/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Author: <lookup: author-notes> 4 | 5 | Date: <date> 6 | 7 | Tags: <tags> 8 | 9 | Work Title: <lookup: sources> 10 | 11 | Work Pages: 12 | 13 | Date Added: <dateadded> 14 | 15 | Body: 16 | 17 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/Beyond 1984 - The People Machines.txt: -------------------------------------------------------------------------------- 1 | Source Title: Beyond 1984: The People Machines 2 | 3 | Author: Ray Bradbury 4 | 5 | Source Type: Essay 6 | 7 | Source Date: 1979 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/Fragment on Government.txt: -------------------------------------------------------------------------------- 1 | Source Title: Fragment on Government 2 | 3 | Author: Abraham Lincoln 4 | 5 | Source Type: Article 6 | 7 | Source Date: 1854 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/No Direction Home.txt: -------------------------------------------------------------------------------- 1 | Source Title: No Direction Home 2 | 3 | Author: Allen Ginsberg 4 | 5 | Source Type: Film 6 | 7 | Source Date: 2005 8 | 9 | Source Link: https://allenginsberg.org/2014/01/allen-ginsberg-praises-bob-dylan/ 10 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/The Collected Papers of Albert Einstein.txt: -------------------------------------------------------------------------------- 1 | Source Title: The Collected Papers of Albert Einstein 2 | 3 | Author: Albert Einstein 4 | 5 | Source Type: unknown 6 | 7 | Source Minor Title: My Future Plans 8 | 9 | Source Date: 18 September 1896 10 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/The Identities of Persons.txt: -------------------------------------------------------------------------------- 1 | Source Title: The Identities of Persons 2 | 3 | Author: Amélie Rorty 4 | 5 | Source Type: Book 6 | 7 | Source Date: 1976 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/The Zebra-Striped Hearse.txt: -------------------------------------------------------------------------------- 1 | Source Title: The Zebra-Striped Hearse 2 | 3 | Author: Ross MacDonald 4 | 5 | Source Type: Book 6 | 7 | Source Date: 1962 8 | -------------------------------------------------------------------------------- /Notenik/models/11 - Commonplace with Lookups/sources/To Colonel Charles Yancey.txt: -------------------------------------------------------------------------------- 1 | Source Title: To Colonel Charles Yancey 2 | 3 | Author: Thomas Jefferson 4 | 5 | Source Type: Letter 6 | 7 | Source Date: Jan 6, 1816 8 | 9 | Source Link: http://oll.libertyfund.org/titles/807/88152 10 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/content/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/content/About.mdtext: -------------------------------------------------------------------------------- 1 | Title: About 2 | 3 | Status: 6 - Completed 4 | 5 | Class: page 6 | 7 | Date Modified: 2022-11-10 10:23:54 -0800 8 | 9 | Body: 10 | 11 | Here's the page where a reader can learn all about the site and its author. 12 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/content/Index.mdtext: -------------------------------------------------------------------------------- 1 | Title: Index 2 | 3 | Class: home 4 | 5 | Date Added: 2022-11-09 13:23:05 -0800 6 | 7 | Date Modified: 2022-11-09 13:23:46 -0800 8 | 9 | Body: 10 | 11 | This is the content that will appear on the home page of your website. 12 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/content/files/Notenik | Notenik on MB Air.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/models/12 - Website/content/files/Notenik | Notenik on MB Air.png -------------------------------------------------------------------------------- /Notenik/models/12 - Website/factory/includes/back-to-top.html: -------------------------------------------------------------------------------- 1 | <p> 2 | <a href="#">Back to top</a> 3 | </p> 4 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/factory/includes/footer.html: -------------------------------------------------------------------------------- 1 | <footer> 2 | <hr /> 3 | <p> 4 | This Prototype for a Notenik-generated Website was created by Herb Bowie and is published as open source software under the terms of the MIT License. 5 | </p> 6 | </footer> -------------------------------------------------------------------------------- /Notenik/models/12 - Website/factory/includes/header.html: -------------------------------------------------------------------------------- 1 | <!-- Start of include file header.html --> 2 | <header> 3 | <p id="site-title"> 4 | <a href="=$relative$=index.html"> 5 | Prototype Notenik-Generated Website 6 | </a> 7 | </p> 8 | </header> 9 | <!-- End of include file header.html --> 10 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/resources/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/resources/Notenik Knowledge Base - App.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notenik Knowledge Base - App 2 | 3 | Link: notenik://help 4 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/resources/Notenik Knowledge Base - Web.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notenik Knowledge Base - Web 2 | 3 | Link: https://notenik.app/knowledge-base/EPUB/html/notenik-knowledge-base.html 4 | -------------------------------------------------------------------------------- /Notenik/models/12 - Website/resources/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Notenik/models/13 - Contacts/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/13 - Contacts/Herb Bowie.txt: -------------------------------------------------------------------------------- 1 | Full Name: Herb Bowie 2 | 3 | Tags: 4 | 5 | Link: https://hbowie.net 6 | 7 | Email: herb@notenik.app 8 | 9 | Note: 10 | 11 | Software Developer and Author 12 | 13 | -------------------------------------------------------------------------------- /Notenik/models/14 - Travel Planner/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/14 - Travel Planner/Flight to XXX.mdtext: -------------------------------------------------------------------------------- 1 | Title: Flight to XXX 2 | 3 | Tags: airlines 4 | 5 | Date: 2023-11-28 6 | 7 | Time of Day: 01:00 PM 8 | 9 | Duration: 02:30 10 | 11 | Body: 12 | 13 | Flight details go here. 14 | 15 | -------------------------------------------------------------------------------- /Notenik/models/15 - Code Snippets/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/15 - Code Snippets/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Code: <code> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/README.md: -------------------------------------------------------------------------------- 1 | Notenik for People Demo Project 2 | =============================== 3 | 4 | This folder contains a Notenik project meant to be used with...? -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/content/pages/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains files created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/content/pages/Index.txt: -------------------------------------------------------------------------------- 1 | Title: Index 2 | 3 | Body: 4 | 5 | My name is Herb. I enjoy making websites, and making software to make it easier to make websites. 6 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/content/pages/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | AKA: <aka> 4 | 5 | Seq: <seq> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/factory/scripts/chapter 01 - build script.tsv: -------------------------------------------------------------------------------- 1 | module action modifier object value 2 | input open notenik-defined #PATH#../../content/pages 3 | template open #PATH#../templates/chapter 01 - page template.html 4 | template generate 5 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/factory/scripts/chapter 02 - build script.tsv: -------------------------------------------------------------------------------- 1 | module action modifier object value 2 | input open notenik-defined #PATH#../../content/pages 3 | template webroot #PATH#../../web 4 | template open #PATH#../templates/chapter 02 - page template.html 5 | template generate 6 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/factory/scripts/chapter 04 - build script.tsv: -------------------------------------------------------------------------------- 1 | module action modifier object value 2 | input open notenik-defined #PATH#../../content/pages 3 | template webroot #PATH#../../web 4 | template open #PATH#../templates/chapter 04 - page template.html 5 | template generate 6 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/factory/templates/chapter 01 - page template.html: -------------------------------------------------------------------------------- 1 | <?nextrec?> 2 | <?output "../../web/=$title&f$=.html"?> 3 | =$body$= 4 | <?loop?> 5 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/factory/templates/chapter 05 - nav clear template.html: -------------------------------------------------------------------------------- 1 | <?output "../includes-gen/nav-clear.html" ?> 2 | <?nextrec?> 3 | <?set =$aka$=-aria-current = "" ?> 4 | <?loop?> 5 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/resources/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/resources/Markdown Cheat Sheet.mdtext: -------------------------------------------------------------------------------- 1 | Title: Markdown Cheat Sheet 2 | 3 | Link: https://www.markdownguide.org/cheat-sheet/ 4 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/resources/Markdown Syntax page from Daring Fireball.mdtext: -------------------------------------------------------------------------------- 1 | Title: Markdown Syntax page from Daring Fireball 2 | 3 | Link: https://daringfireball.net/projects/markdown/syntax 4 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/resources/Notenik Knowledge Base - App.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notenik Knowledge Base - App 2 | 3 | Link: notenik://help 4 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/resources/Notenik Knowledge Base - Web.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notenik Knowledge Base - Web 2 | 3 | Link: https://notenik.app/knowledge-base/EPUB/html/notenik-knowledge-base.html 4 | -------------------------------------------------------------------------------- /Notenik/models/16 - HTML for People demo/resources/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_128x128.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_128x128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_128x128@2x.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_16x16.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_16x16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_16x16@2x.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_256x256.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_256x256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_256x256@2x.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_32x32.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_32x32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_32x32@2x.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_512x512.png -------------------------------------------------------------------------------- /Notenik/notenik.iconset/icon_512x512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Notenik/notenik.iconset/icon_512x512@2x.png -------------------------------------------------------------------------------- /Test Collections/- INFO-parent-realm.nnk: -------------------------------------------------------------------------------- 1 | Title: Notenik Test Collections 2 | 3 | Window Numbers: 113.0;69.0;960.0;868.0;500.0; 4 | 5 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Name and Size/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Name and Size/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Code: <code> 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Size/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Size/A Test Note.txt: -------------------------------------------------------------------------------- 1 | Title: A Test Note 2 | 3 | Link: https://notenik.net 4 | 5 | Body: 6 | 7 | This is the body of a test note... 8 | 9 | ...with another line added! 10 | 11 | And a third line! 12 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Size/Another Test Note.txt: -------------------------------------------------------------------------------- 1 | Title: Another Test Note 2 | 3 | Body: 4 | 5 | Another Test Note 6 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Size/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.app 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie. 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Size/Third Test Note.txt: -------------------------------------------------------------------------------- 1 | Title: Third Test Note 2 | 3 | Link: https://discourse.notenik.app 4 | 5 | Body: 6 | 7 | Third Test Note 8 | -------------------------------------------------------------------------------- /Test Collections/Adjust Edit Font Size/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Alternate Field Names/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Alternate Field Names/Hans.txt: -------------------------------------------------------------------------------- 1 | Name: Hans 2 | 3 | Type: xxx 4 | 5 | Birth Sequence: 4 6 | 7 | Stage: 0 - Idea 8 | -------------------------------------------------------------------------------- /Test Collections/Alternate Field Names/Sharon Bowie.txt: -------------------------------------------------------------------------------- 1 | Name: Sharon Bowie 2 | 3 | Type: indeterminate 4 | 5 | Birth Sequence: 3 6 | 7 | Stage: 0 - Idea 8 | -------------------------------------------------------------------------------- /Test Collections/Attachments/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Attachments/And One More.txt: -------------------------------------------------------------------------------- 1 | Title: And One More 2 | 3 | Body: 4 | 5 | Note # 3. 6 | -------------------------------------------------------------------------------- /Test Collections/Attachments/And Yet Another.txt: -------------------------------------------------------------------------------- 1 | Title: And Yet Another 2 | 3 | Body: 4 | 5 | Another note. 6 | -------------------------------------------------------------------------------- /Test Collections/Attachments/And now a localhost image.txt: -------------------------------------------------------------------------------- 1 | Title: And now a localhost image 2 | 3 | Body: 4 | 5 | Let's try an image reference to localhost: 6 | 7 | ![Herb and Hank at Discovery Park](http://localhost/~hbowie/practopian%203/images/the-author-herb-with-hank.jpg) 8 | -------------------------------------------------------------------------------- /Test Collections/Attachments/Another Note.txt: -------------------------------------------------------------------------------- 1 | Title: Another Note 2 | -------------------------------------------------------------------------------- /Test Collections/Attachments/Let-s try an image.txt: -------------------------------------------------------------------------------- 1 | Title: Let's try an image 2 | 3 | Body: 4 | 5 | Here is a link to an image on the web. 6 | 7 | ![Notenik Logo](https://notenik.app/images/notenik-logo.png) 8 | -------------------------------------------------------------------------------- /Test Collections/Attachments/files/Another Note | text file 2.txt: -------------------------------------------------------------------------------- 1 | Test Attachment 2 | -------------------------------------------------------------------------------- /Test Collections/Attachments/files/Another Note | text file.txt: -------------------------------------------------------------------------------- 1 | Test Attachment 2 | -------------------------------------------------------------------------------- /Test Collections/Attachments/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Backlinks Test/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Backlinks Test/And another Wiki link.txt: -------------------------------------------------------------------------------- 1 | Title: And another Wiki link 2 | 3 | Wiki Links: Notenik 4 | 5 | Body: 6 | 7 | Link to [[Notenik]]. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Backlinks Test/Here-s a Wikilink.txt: -------------------------------------------------------------------------------- 1 | Title: Here's a Wikilink 2 | 3 | Wiki Links: Notenik 4 | 5 | Body: 6 | 7 | Let's link to [[Notenik]]. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Backlinks Test/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Backlinks: <backlinks> 6 | 7 | Wiki Links: <wikilinks> 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/Beyond 1984 - The People Machines.txt: -------------------------------------------------------------------------------- 1 | Work Title: Beyond 1984: The People Machines 2 | 3 | Author: Ray Bradbury 4 | 5 | Work Type: Essay 6 | 7 | Work Date: 1979 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/Fragment on Government.txt: -------------------------------------------------------------------------------- 1 | Work Title: Fragment on Government 2 | 3 | Author: Abraham Lincoln 4 | 5 | Work Type: Article 6 | 7 | Work Date: 1854 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/No Direction Home.txt: -------------------------------------------------------------------------------- 1 | Work Title: No Direction Home 2 | 3 | Author: Allen Ginsberg 4 | 5 | Work Type: Film 6 | 7 | Work Date: 2005 8 | 9 | Work Link: https://allenginsberg.org/2014/01/allen-ginsberg-praises-bob-dylan/ 10 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/The Collected Papers of Albert Einstein.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Collected Papers of Albert Einstein 2 | 3 | Author: Albert Einstein 4 | 5 | Work Type: unknown 6 | 7 | Work Minor Title: My Future Plans 8 | 9 | Work Date: 18 September 1896 10 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/The Identities of Persons.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Identities of Persons 2 | 3 | Author: Amélie Rorty 4 | 5 | Work Type: Book 6 | 7 | Work Date: 1976 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/The Zebra-Striped Hearse.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Zebra-Striped Hearse 2 | 3 | Author: Ross MacDonald 4 | 5 | Work Type: Book 6 | 7 | Work Date: 1962 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/To Colonel Charles Yancey.txt: -------------------------------------------------------------------------------- 1 | Work Title: To Colonel Charles Yancey 2 | 3 | Author: Thomas Jefferson 4 | 5 | Work Type: Letter 6 | 7 | Work Date: Jan 6, 1816 8 | 9 | Work Link: http://oll.libertyfund.org/titles/807/88152 10 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Alan Lightman.txt: -------------------------------------------------------------------------------- 1 | Author: Alan Lightman 2 | 3 | Author Info: American physicist, writer, and social entrepreneur 4 | 5 | Author Years: 1948- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Alan_Lightman 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Albert Einstein.txt: -------------------------------------------------------------------------------- 1 | Author: Albert Einstein 2 | 3 | Author Info: German-born theoretical physicist 4 | 5 | Author Years: 1879-1955 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Albert_Einstein 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Allen Ginsberg.txt: -------------------------------------------------------------------------------- 1 | Author: Allen Ginsberg 2 | 3 | Author Info: American poet and writer 4 | 5 | Author Years: 1926-1997 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Allen_Ginsberg 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Amélie Rorty.txt: -------------------------------------------------------------------------------- 1 | Author: Amélie Rorty 2 | 3 | Author Info: Belgian-born American philosopher 4 | 5 | Author Years: 1932-2020 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Amélie_Rorty 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Anthony M - Kennedy.txt: -------------------------------------------------------------------------------- 1 | Author: Anthony M. Kennedy 2 | 3 | Author Info: American lawyer and jurist 4 | 5 | Author Years: 1936- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Anthony_Kennedy 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/David Foster Wallace.txt: -------------------------------------------------------------------------------- 1 | Author: David Foster Wallace 2 | 3 | Author Info: American author of novels, short stories and essays 4 | 5 | Author Years: 1962-2008 6 | 7 | Author Link: https://en.wikipedia.org/wiki/David_Foster_Wallace 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/John Hiatt.txt: -------------------------------------------------------------------------------- 1 | Author: John Hiatt 2 | 3 | Backlinks: Writings/Slow Turning 4 | 5 | Author Notes: 6 | 7 | Created by Wiki-style Link found in the body of the Note titled Slow Turning. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Ray Bradbury.txt: -------------------------------------------------------------------------------- 1 | Author: Ray Bradbury 2 | 3 | Author Info: American author and screenwriter 4 | 5 | Author Years: 1920-2012 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Ray_Bradbury 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Raymond Chandler.txt: -------------------------------------------------------------------------------- 1 | Author: Raymond Chandler 2 | 3 | Author Info: American-British novelist and screenwriter 4 | 5 | Author Years: 1888-1959 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Raymond_Chandler 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Steve Jobs.txt: -------------------------------------------------------------------------------- 1 | Author: Steve Jobs 2 | 3 | Author Info: American business magnate, industrial designer, investor, and media proprietor 4 | 5 | Author Years: 1955-2011 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Steve_Jobs 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/The Grateful Dead.txt: -------------------------------------------------------------------------------- 1 | Author: The Grateful Dead 2 | 3 | Backlinks: Slow Turning 4 | 5 | Author Notes: 6 | 7 | Created by Wiki-style Link found in the body of the Note titled Slow Turning. 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/Tom Robbins.txt: -------------------------------------------------------------------------------- 1 | Author: Tom Robbins 2 | 3 | Author Info: American novelist 4 | 5 | Author Years: 1932- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Tom_Robbins 8 | -------------------------------------------------------------------------------- /Test Collections/Backlinks between Collections/author-works/author-notes/template.txt: -------------------------------------------------------------------------------- 1 | Author: <title> 2 | 3 | Tags: <tags> 4 | 5 | Author Info: 6 | 7 | Author Years: 8 | 9 | Author Link: <link> 10 | 11 | Author Notes: <body> 12 | 13 | Backlinks: <backlinks> 14 | 15 | Wiki Links: <wikilinks> 16 | 17 | -------------------------------------------------------------------------------- /Test Collections/Backlinks with Compound Keys/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Backlinks with Compound Keys/Note 1 20240426195843.txt: -------------------------------------------------------------------------------- 1 | Title: Note 1 2 | 3 | Timestamp: 20240426195843 4 | 5 | Wiki Links: Note 2 20240426195900 6 | 7 | Body: 8 | 9 | Note 1 was created before [[Note 2 20240426195900]]. 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Backlinks with Compound Keys/Note 2 20240426195900.txt: -------------------------------------------------------------------------------- 1 | Title: Note 2 2 | 3 | Timestamp: 20240426195900 4 | 5 | Backlinks: Backlinks with Compound Keys/Note 1 20240426195843 6 | Backlinks: Backlinks with Compound Keys/Note 3 20240426200016 7 | -------------------------------------------------------------------------------- /Test Collections/Backlinks with Compound Keys/Note 3 20240426200016.txt: -------------------------------------------------------------------------------- 1 | Title: Note 3 2 | 3 | Timestamp: 20240426200016 4 | 5 | Wiki Links: Note 2 20240426195900 6 | 7 | Body: 8 | 9 | Note 3 was created after [[Note 2 20240426195900]]. 10 | -------------------------------------------------------------------------------- /Test Collections/Backlinks with Compound Keys/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | note120240426195843 20240426195843 3 | note220240426195900 20240426195900 4 | note320240426200016 20240426200016 5 | -------------------------------------------------------------------------------- /Test Collections/Backlinks with Compound Keys/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Timestamp: 6 | 7 | Backlinks: <backlinks> 8 | 9 | Wiki Links: <wikilinks> 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Changing File Extensions/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Changing File Extensions/Another Note.md: -------------------------------------------------------------------------------- 1 | Title: Another Note 2 | 3 | Body: 4 | 5 | A second note to be renamed. 6 | -------------------------------------------------------------------------------- /Test Collections/Changing File Extensions/Note Number 3.md: -------------------------------------------------------------------------------- 1 | Title: Note Number 3 2 | 3 | Body: 4 | 5 | And a third note. 6 | -------------------------------------------------------------------------------- /Test Collections/Changing File Extensions/Notenik.md: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Link: https://notenik.net 4 | 5 | Body: 6 | 7 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Changing File Extensions/template.md: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Collection Prefs/This is a Sample Note.txt: -------------------------------------------------------------------------------- 1 | Title: This is a sample note 2 | 3 | Body: 4 | 5 | And this is the body of the note. -------------------------------------------------------------------------------- /Test Collections/Collection Prefs/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Date: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Bob.txt: -------------------------------------------------------------------------------- 1 | Title: Bob 2 | 3 | Combo Field: Bob 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Herbert.txt: -------------------------------------------------------------------------------- 1 | Title: Herbert 2 | 3 | Combo Field: Herbert 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/James.txt: -------------------------------------------------------------------------------- 1 | Title: James 2 | 3 | Combo Field: James 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Jim.txt: -------------------------------------------------------------------------------- 1 | Title: Jim 2 | 3 | Combo Field: Jim 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Josephine.txt: -------------------------------------------------------------------------------- 1 | Title: Josephine 2 | 3 | Combo Field: Rollo 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Robert.txt: -------------------------------------------------------------------------------- 1 | Title: Robert 2 | 3 | Combo Field: Roberto 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Roberto.txt: -------------------------------------------------------------------------------- 1 | Title: Roberto 2 | 3 | Combo Field: Roberto 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/Rollo.txt: -------------------------------------------------------------------------------- 1 | Title: Rollo 2 | 3 | Combo Field: Rollo 4 | -------------------------------------------------------------------------------- /Test Collections/Combo Wombo/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Combo Field: <combo> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/- INFO-parent-realm.nnk: -------------------------------------------------------------------------------- 1 | Title: Test Collections Commonplace Test 2 | 3 | Window Numbers: 775.0;0.0;1001.0;632.0;375.0; 4 | 5 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Abraham Lincoln.txt: -------------------------------------------------------------------------------- 1 | Author: Abraham Lincoln 2 | 3 | Author Info: American statesman and lawyer 4 | 5 | Author Years: 1809-1865 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Abraham_Lincoln 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Alan Lightman.txt: -------------------------------------------------------------------------------- 1 | Author: Alan Lightman 2 | 3 | Author Info: American physicist, writer, and social entrepreneur 4 | 5 | Author Years: 1948- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Alan_Lightman 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Albert Einstein.txt: -------------------------------------------------------------------------------- 1 | Author: Albert Einstein 2 | 3 | Author Info: German-born theoretical physicist 4 | 5 | Author Years: 1879-1955 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Albert_Einstein 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Allen Ginsberg.txt: -------------------------------------------------------------------------------- 1 | Author: Allen Ginsberg 2 | 3 | Author Info: American poet and writer 4 | 5 | Author Years: 1926-1997 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Allen_Ginsberg 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Amélie Rorty.txt: -------------------------------------------------------------------------------- 1 | Author: Amélie Rorty 2 | 3 | Author Info: Belgian-born American philosopher 4 | 5 | Author Years: 1932-2020 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Amélie_Rorty 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Anthony M - Kennedy.txt: -------------------------------------------------------------------------------- 1 | Author: Anthony M. Kennedy 2 | 3 | Author Info: American lawyer and jurist 4 | 5 | Author Years: 1936- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Anthony_Kennedy 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/David Foster Wallace.txt: -------------------------------------------------------------------------------- 1 | Author: David Foster Wallace 2 | 3 | Author Info: American author of novels, short stories and essays 4 | 5 | Author Years: 1962-2008 6 | 7 | Author Link: https://en.wikipedia.org/wiki/David_Foster_Wallace 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Henry Miller.txt: -------------------------------------------------------------------------------- 1 | Author: Henry Miller 2 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Ray Bradbury.txt: -------------------------------------------------------------------------------- 1 | Author: Ray Bradbury 2 | 3 | Author Info: American author and screenwriter 4 | 5 | Author Years: 1920-2012 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Ray_Bradbury 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Raymond Chandler.txt: -------------------------------------------------------------------------------- 1 | Author: Raymond Chandler 2 | 3 | Author Info: American-British novelist and screenwriter 4 | 5 | Author Years: 1888-1959 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Raymond_Chandler 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Steve Jobs.txt: -------------------------------------------------------------------------------- 1 | Author: Steve Jobs 2 | 3 | Author Info: American business magnate, industrial designer, investor, and media proprietor 4 | 5 | Author Years: 1955-2011 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Steve_Jobs 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-authors/Tom Robbins.txt: -------------------------------------------------------------------------------- 1 | Author: Tom Robbins 2 | 3 | Author Info: American novelist 4 | 5 | Author Years: 1932- 6 | 7 | Author Link: https://en.wikipedia.org/wiki/Tom_Robbins 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-quotes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-quotes/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Author: <lookup: test-authors> 4 | 5 | Date: <date> 6 | 7 | Tags: <tags> 8 | 9 | Work Title: <lookup: test-works> 10 | 11 | Work Pages: 12 | 13 | Date Added: <dateadded> 14 | 15 | Body: 16 | 17 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/Beyond 1984 - The People Machines.txt: -------------------------------------------------------------------------------- 1 | Work Title: Beyond 1984: The People Machines 2 | 3 | Author: Ray Bradbury 4 | 5 | Work Type: Essay 6 | 7 | Work Date: 1979 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/Big Sur and the Oranges of Hieronymous Bosch.txt: -------------------------------------------------------------------------------- 1 | Work Title: Big Sur and the Oranges of Hieronymous Bosch 2 | 3 | Author: Henry Miller 4 | 5 | Work Date: 1957 6 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/Fragment on Government.txt: -------------------------------------------------------------------------------- 1 | Work Title: Fragment on Government 2 | 3 | Author: Abraham Lincoln 4 | 5 | Work Type: Article 6 | 7 | Work Date: 1854 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/Gracie Goes to Schooner School.txt: -------------------------------------------------------------------------------- 1 | Work Title: Gracie Goes to Schooner School 2 | 3 | Author: Tom Robbins 4 | 5 | Work Type: Interview 6 | 7 | Work Date: 2007 8 | 9 | Work Link: http://www.seattlepi.com/ae/books/article/Gracie-goes-to-schooner-school-1238432.php 10 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/Henry Miller Interview from 1961.txt: -------------------------------------------------------------------------------- 1 | Work Title: Henry Miller Interview from 1961 2 | 3 | Author: Henry Miller 4 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/Henry Miller on Writing.txt: -------------------------------------------------------------------------------- 1 | Work Title: Henry Miller on Writing 2 | 3 | Author: Henry Miller 4 | 5 | Work Type: Book 6 | 7 | Work Date: 1964 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/No Direction Home.txt: -------------------------------------------------------------------------------- 1 | Work Title: No Direction Home 2 | 3 | Author: Allen Ginsberg 4 | 5 | Work Type: Film 6 | 7 | Work Date: 2005 8 | 9 | Work Link: https://allenginsberg.org/2014/01/allen-ginsberg-praises-bob-dylan/ 10 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/The Air-Conditioned Nightmare.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Air-Conditioned Nightmare 2 | 3 | Author: Henry Miller 4 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/The Collected Papers of Albert Einstein.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Collected Papers of Albert Einstein 2 | 3 | Author: Albert Einstein 4 | 5 | Work Type: unknown 6 | 7 | Work Minor Title: My Future Plans 8 | 9 | Work Date: 1896-09-18 10 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/The Identities of Persons.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Identities of Persons 2 | 3 | Author: Amélie Rorty 4 | 5 | Work Type: Book 6 | 7 | Work Date: 1976 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/The Simple Art of Murder.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Simple Art of Murder 2 | 3 | Author: Raymond Chandler 4 | 5 | Work Type: Book 6 | 7 | Work Date: 1945 8 | 9 | Work Id: 0394757653 10 | 11 | Work Rights: Copyright 12 | 13 | Work Rights Holder: Raymond Chandler 14 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/The Zebra-Striped Hearse.txt: -------------------------------------------------------------------------------- 1 | Work Title: The Zebra-Striped Hearse 2 | 3 | Author: Ross MacDonald 4 | 5 | Work Type: Book 6 | 7 | Work Date: 1962 8 | -------------------------------------------------------------------------------- /Test Collections/Commonplace Test/test-works/To Colonel Charles Yancey.txt: -------------------------------------------------------------------------------- 1 | Work Title: To Colonel Charles Yancey 2 | 3 | Author: Thomas Jefferson 4 | 5 | Work Type: Letter 6 | 7 | Work Date: 1816-01-06 8 | 9 | Work Link: http://oll.libertyfund.org/titles/807/88152 10 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 1/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 1/Test Note 1a.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 1a 2 | 3 | Body: 4 | 5 | This is a test. 6 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 1/Test Note 1b.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 1b 2 | 3 | Tags: test 4 | 5 | Link: https://pagantuna.com 6 | 7 | Body: 8 | 9 | Another test. 10 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 1/Test Note 1c.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 1c 2 | 3 | Body: 4 | 5 | And another. 6 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 1/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Seq: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 2/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 2/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Copy Cut Paste 2/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Seq: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Daily Log/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Daily Log/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Body: 6 | 7 | A note-taking system cunningly devised by Herb Bowie. 8 | 9 | Learn more at [Notenik.app](https://notenik.app). 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/Daily Log/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Daily.txt: -------------------------------------------------------------------------------- 1 | Title: Daily 2 | 3 | Tags: days 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 21 Feb 2020 8 | 9 | Recurs: Daily 10 | 11 | Date Added: 2020-02-04 22:50:25 +0000 12 | 13 | Body: 14 | 15 | A task that should recur every day. 16 | 17 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Every Monday.txt: -------------------------------------------------------------------------------- 1 | Title: Every Monday 2 | 3 | Tags: day of the week 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 16 Mar 2020 8 | 9 | Recurs: Every Monday 10 | 11 | Date Added: 2020-02-04 20:22:33 +0000 12 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Every Month.txt: -------------------------------------------------------------------------------- 1 | Title: Every Month 2 | 3 | Tags: months 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 29 Jul 2020 8 | 9 | Recurs: Every month 10 | 11 | Date Added: 2020-02-04 20:26:15 +0000 12 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Every other Monday.txt: -------------------------------------------------------------------------------- 1 | Title: Every other Monday 2 | 3 | Tags: day of the week 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 11 May 2020 8 | 9 | Recurs: Every other Monday 10 | 11 | Date Added: 2020-02-04 20:23:18 +0000 12 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Same Date Every Month.txt: -------------------------------------------------------------------------------- 1 | Title: Same Date Every Month 2 | 3 | Tags: day of the month 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 01 Aug 2020 8 | 9 | Recurs: The first of every month 10 | 11 | Date Added: 2020-02-04 20:33:46 +0000 12 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Second Tuesday of Every Month.txt: -------------------------------------------------------------------------------- 1 | Title: Second Tuesday of Every Month 2 | 3 | Tags: months 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 09 Nov 2021 8 | 9 | Recurs: 2nd Tuesday of every Month 10 | 11 | Date Added: 2020-02-04 20:58:09 +0000 12 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/Weekdays.txt: -------------------------------------------------------------------------------- 1 | Title: Weekdays 2 | 3 | Tags: days 4 | 5 | Status: 0 - Idea 6 | 7 | Date: 02 Mar 2020 8 | 9 | Recurs: Every Weekday 10 | 11 | Date Added: 2020-02-04 20:21:22 +0000 12 | 13 | Body: 14 | 15 | A task that should only recur Monday thru Friday. 16 | 17 | -------------------------------------------------------------------------------- /Test Collections/Date Recurs/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Status: 8 | 9 | Date: 10 | 11 | Recurs: 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/Date Testing/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Date Testing/Date for Today.txt: -------------------------------------------------------------------------------- 1 | Title: Date for Today 2 | 3 | Date: 2023-07-26 4 | -------------------------------------------------------------------------------- /Test Collections/Date Testing/Dates with Times.txt: -------------------------------------------------------------------------------- 1 | Title: Dates with Times 2 | 3 | Date: 2023-07-24 11:47:37 4 | -------------------------------------------------------------------------------- /Test Collections/Deleting Notes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Deleting Notes/Note Number 1.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 1 2 | -------------------------------------------------------------------------------- /Test Collections/Deleting Notes/Note Number 2.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 2 2 | -------------------------------------------------------------------------------- /Test Collections/Deleting Notes/Note Number 3.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 3 2 | -------------------------------------------------------------------------------- /Test Collections/Deleting Notes/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Display Template/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Display Template/And A Third Note.txt: -------------------------------------------------------------------------------- 1 | Title: And A Third Note 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 24 6 | 7 | Date Modified: 2021-04-23 17:32:27 -0700 8 | 9 | Body: 10 | 11 | Yet another 12 | -------------------------------------------------------------------------------- /Test Collections/Display Template/display.css: -------------------------------------------------------------------------------- 1 | body { 2 | tab-size: 4; font-family: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif; 3 | font-size: 14pt } -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/20180813 Chineham chat article.txt: -------------------------------------------------------------------------------- 1 | Title: 20180813 Chineham chat article 2 | 3 | tags: 20180813 4 | 5 | This is the Chineham chat article. 6 | 7 | This is the second paragraph. 8 | -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/20191127 Funeral Service Yvonne Andrews.md: -------------------------------------------------------------------------------- 1 | Title: Doris Bowie Funeral services 2 | Tags: funeral, service 3 | Author: Herb Bowie 4 | Location: Crem+CCC 5 | Date: 20191127 6 | 7 | This is the body of the funeral service. 8 | 9 | This is more of the funeral service. 10 | -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/Another YAML example.mdtext: -------------------------------------------------------------------------------- 1 | --- 2 | layout: post 3 | title: Another YAML example 4 | --- 5 | This is another Note with YAML frontmatter. 6 | -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/Good Old Notenik Note.txt: -------------------------------------------------------------------------------- 1 | title: Good Old Notenik Note 2 | 3 | location: anywhere 4 | 5 | author: Herb Bowie 6 | 7 | date: 06 Jan 2020 8 | 9 | tags: test 10 | 11 | Body: 12 | 13 | This is a good old Notenik note. 14 | -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/MMD Note.md: -------------------------------------------------------------------------------- 1 | title: Multi-Markdown Note 2 | location: CCC 3 | author: Herb Bowie 4 | passage: 1 John 1.1-2.6 5 | date: 20191224 6 | tags: sermon, Christmas 7 | 8 | # MMD Note 9 | 10 | This is a Multi-Markdown Note -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/Note with No Body Label.txt: -------------------------------------------------------------------------------- 1 | Title: Note with No Body Label 2 | 3 | This is the body of the Note. The text file has no label for the Body section. Notenik assumes that any unidentified text following the Title must be the body. -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/Note with No Labels.txt: -------------------------------------------------------------------------------- 1 | This is the body of a note. The note file does not contain any labels. The title of the note comes from the Note's file name. -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/Note with YAML Frontmatter.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: Note with YAML Frontmatter 3 | tags: 4 | - Educational 5 | -Tasty 6 | - Hip 7 | --- 8 | This is a note with YAML frontmatter. 9 | -------------------------------------------------------------------------------- /Test Collections/Diverse Formats/Plain Text Note.txt: -------------------------------------------------------------------------------- 1 | This is a plain-text note. The file name will be used as the title. 2 | 3 | This is a second paragraph. 4 | 5 | ## This is a level 2 heading. -------------------------------------------------------------------------------- /Test Collections/Drag and Drop/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Drag and Drop/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Drag and Drop/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Duplicates/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Duplicates/Notenik 1.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 1 2 | 3 | Body: 4 | 5 | Another Notenik Note 6 | -------------------------------------------------------------------------------- /Test Collections/Duplicates/Notenik 2.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 2 | 3 | Body: 4 | 5 | And yet another 6 | -------------------------------------------------------------------------------- /Test Collections/Duplicates/Notenik 3.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 3 2 | 3 | Body: 4 | 5 | A fourth Notenik note 6 | -------------------------------------------------------------------------------- /Test Collections/Duplicates/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Duplicates/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Field Types/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Field Types/Author 1.txt: -------------------------------------------------------------------------------- 1 | Title: Author 1 2 | 3 | Author: Herb Bowie 4 | 5 | Creator: George Orwell 6 | 7 | Writer: Ernest Hemingway 8 | -------------------------------------------------------------------------------- /Test Collections/Field Types/Author 2.txt: -------------------------------------------------------------------------------- 1 | Title: Author 2 2 | 3 | Author: Herbert Hoover 4 | 5 | Creator: George Bailey 6 | 7 | Writer: Raymond Chandler 8 | -------------------------------------------------------------------------------- /Test Collections/Field Types/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Field Types/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Author: 8 | 9 | Creator: 10 | 11 | Writer: <author> 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/Footnotes with Short IDs/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Footnotes with Short IDs/A Footnote with a Link.txt: -------------------------------------------------------------------------------- 1 | Title: A Footnote with a Link 2 | 3 | Short ID: fowl 4 | 5 | Body: 6 | 7 | This is a footnote[^1] 8 | 9 | [^1]: First footnote 10 | 11 | This is a link footnote[^2] 12 | 13 | [^2]: <https://apple.com> 14 | -------------------------------------------------------------------------------- /Test Collections/Footnotes with Short IDs/Another Footnote Sample.txt: -------------------------------------------------------------------------------- 1 | Title: Another Footnote Sample 2 | 3 | Short ID: anfs 4 | 5 | Body: 6 | 7 | This is a sample Notenik document. 8 | 9 | Here is a sentence [^With an inline footnote]. 10 | The footnote is hidden from the Display page. 11 | -------------------------------------------------------------------------------- /Test Collections/Footnotes with Short IDs/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Short ID: <short-id> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Adding Yet Another New Note.txt: -------------------------------------------------------------------------------- 1 | Title: Adding Yet Another New Note 2 | 3 | Timestamp: 20220326233509 4 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Adding a New Note on Saturday afternoon at 2-44.txt: -------------------------------------------------------------------------------- 1 | Title: Adding a New Note on Saturday afternoon at 2:44 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/And Another New Note from Applescript.txt: -------------------------------------------------------------------------------- 1 | Title: And Another New Note from Applescript 2 | 3 | Tags: hook 4 | 5 | Link: https://notenik.app 6 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Another New Note from Applescript.txt: -------------------------------------------------------------------------------- 1 | Title: Another New Note from Applescript 2 | 3 | Tags: hook 4 | 5 | Link: https://notenik.app 6 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Another New Note on 2022-03-26.txt: -------------------------------------------------------------------------------- 1 | Title: Another New Note on 2022-03-26 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Another Saturday Note.txt: -------------------------------------------------------------------------------- 1 | Title: Another Saturday Note 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/New Note Added on 2022-03-26.txt: -------------------------------------------------------------------------------- 1 | Title: New Note Added on 2022-03-26 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/New Note from Applescript on 26 Mar 2022 at 2-05 pm.txt: -------------------------------------------------------------------------------- 1 | Title: New Note from Applescript on 26 Mar 2022 at 2:05 pm 2 | 3 | Tags: hook 4 | 5 | Link: https://notenik.app 6 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/New Note from Applescript on 26 Mar 2022 at 4-29 pm.txt: -------------------------------------------------------------------------------- 1 | Title: New Note from Applescript on 26 Mar 2022 at 4:29 pm 2 | 3 | Tags: hook 4 | 5 | Timestamp: 20220326232943 6 | 7 | Link: https://notenik.app 8 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/New Note from Applescript.txt: -------------------------------------------------------------------------------- 1 | Title: New Note from Applescript 2 | 3 | Tags: hook 4 | 5 | Link: https://notenik.app 6 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/New Note on Sat at 02-58 pm.txt: -------------------------------------------------------------------------------- 1 | Title: New Note on Sat at 02:58 pm 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/New Note on Sat at 3-27 pm.txt: -------------------------------------------------------------------------------- 1 | Title: New Note on Sat at 3:27 pm 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Note Linking to New Note.txt: -------------------------------------------------------------------------------- 1 | Title: Note Linking to New Note 2 | 3 | Link: notenik://open?path=/Users/hbowie/Xcode/Notenik/Test%20Collections/Hook%20Integration/×tamp=20220324194503 4 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/One More New Note from Applescript.txt: -------------------------------------------------------------------------------- 1 | Title: One More New Note from Applescript 2 | 3 | Tags: hook 4 | 5 | Link: https://notenik.app 6 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Saturday Note at 03-35 pm.txt: -------------------------------------------------------------------------------- 1 | Title: Saturday Note at 03:35 pm 2 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/Saturday Note at 4-24 pm.txt: -------------------------------------------------------------------------------- 1 | Title: Saturday Note at 4:24 pm 2 | 3 | Tags: groovy 4 | 5 | Timestamp: 20220326232424 6 | 7 | Link: https://notenik.net 8 | -------------------------------------------------------------------------------- /Test Collections/Hook Integration/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Timestamp: 6 | 7 | Link: <link> 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/If Else/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/If Else/Note 1.txt: -------------------------------------------------------------------------------- 1 | Title: Note 1 2 | 3 | Tags: tag1 4 | 5 | Seq: 1 6 | 7 | Body: 8 | 9 | The Body for the first note. 10 | -------------------------------------------------------------------------------- /Test Collections/If Else/Note Number 4.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 4 2 | 3 | Seq: 21 4 | 5 | Body: 6 | 7 | This note has a sequence of 21. 8 | -------------------------------------------------------------------------------- /Test Collections/If Else/Second Note.txt: -------------------------------------------------------------------------------- 1 | Title: Second Note 2 | 3 | Tags: tag2 4 | 5 | Seq: 2 6 | 7 | Body: 8 | 9 | The body for the second note. 10 | -------------------------------------------------------------------------------- /Test Collections/If Else/Third Note.txt: -------------------------------------------------------------------------------- 1 | Title: Third Note 2 | 3 | Tags: tag3 4 | 5 | Seq: 3 6 | 7 | Body: 8 | 9 | The body for the third note. 10 | -------------------------------------------------------------------------------- /Test Collections/If Else/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Seq: 6 | 7 | Link: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/Group A - Note 1.txt: -------------------------------------------------------------------------------- 1 | Title: Group A, Note 1 2 | 3 | Seq: 1.1 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/Group A - Note 2.txt: -------------------------------------------------------------------------------- 1 | Title: Group A, Note 2 2 | 3 | Seq: 1.2 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/Group B - Note 1.txt: -------------------------------------------------------------------------------- 1 | Title: Group B, Note 1 2 | 3 | Seq: 2.1 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/Group B - Note 2.txt: -------------------------------------------------------------------------------- 1 | Title: Group B, Note 2 2 | 3 | Seq: 2.2 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/Group D - Note 1.txt: -------------------------------------------------------------------------------- 1 | Title: Group D, Note 1 2 | 3 | Seq: 4.1 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/Group D - Note 2.txt: -------------------------------------------------------------------------------- 1 | Title: Group D, Note 2 2 | 3 | Seq: 4.2 4 | -------------------------------------------------------------------------------- /Test Collections/Inc Major/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Seq: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle1.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle1 2 | 3 | Seq: 1.7.5.2.3.3 4 | 5 | Level: 4 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle2.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle2 2 | 3 | Seq: 1.7.5.2.3.4 4 | 5 | Level: 4 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle3.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle3 2 | 3 | Seq: 1.7.5.2.4 4 | 5 | Level: 3 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle4.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle4 2 | 3 | Seq: 1.7.5.2.3.10 4 | 5 | Level: 4 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle5.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle5 2 | 3 | Seq: 1.7.5.2.5 4 | 5 | Level: 3 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle6.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle6 2 | 3 | Seq: 1.7.5.2.6 4 | 5 | Level: 3 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle7.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle7 2 | 3 | Seq: 1.7.5.2.3.9 4 | 5 | Level: 4 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle8.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle8 2 | 3 | Seq: 1.7.5.2.2.6 4 | 5 | Level: 4 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/Notetitle9.mdtext: -------------------------------------------------------------------------------- 1 | Title: Notetitle9 2 | 3 | Seq: 1.7.5.2.2.7 4 | 5 | Level: 4 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/The Top Container for your Outline.mdtext: -------------------------------------------------------------------------------- 1 | Title: The Top Container for your Outline 2 | 3 | Level: 1 - Top 4 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/The first chapter.mdtext: -------------------------------------------------------------------------------- 1 | Title: The first chapter 2 | 3 | Seq: 1.1 4 | 5 | Level: 3 - Chapter 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/The first section.mdtext: -------------------------------------------------------------------------------- 1 | Title: The first section 2 | 3 | Seq: 1 4 | 5 | Level: 2 - Section 6 | 7 | Body: 8 | 9 | This text can be formatted using Markdown. 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/The first subsection.mdtext: -------------------------------------------------------------------------------- 1 | Title: The first subsection 2 | 3 | Seq: 1.1.1 4 | 5 | Level: 4 - Subsection 6 | -------------------------------------------------------------------------------- /Test Collections/Infinite Seq Levels/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Seq: <seq> 8 | 9 | Level: <level: > 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Inline Hashtags/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Inline Hashtags/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Link: https://notenik.app 4 | 5 | Body: 6 | 7 | A note-taking system cunningly devised by Herb Bowie. 8 | 9 | You can delete this starting Note after creating one or two of your own. 10 | -------------------------------------------------------------------------------- /Test Collections/Inline Hashtags/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Limited Fields/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Limited Fields/Notenik.md: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Limited Fields/Test Doc.md: -------------------------------------------------------------------------------- 1 | Title: Test Doc 2 | 3 | Tags: test 4 | 5 | Date: 2020-01-13 6 | 7 | Another Field: 8 | 9 | And Yet Another: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Limited Fields/template.md: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Date: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/Intro.txt: -------------------------------------------------------------------------------- 1 | Title: Intro 2 | 3 | Timestamp: 20201213214716 4 | 5 | Body: 6 | 7 | Links should work both from the Link field and from within the Body (or another longtext field). 8 | 9 | 10 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/Link to another Note within Body.txt: -------------------------------------------------------------------------------- 1 | Title: Link to another Note within Body 2 | 3 | Timestamp: 20201214175400 4 | 5 | Seq: 9 6 | 7 | Body: 8 | 9 | See the [[Intro]] for an explanation. 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/Mailto link within Body.txt: -------------------------------------------------------------------------------- 1 | Title: Mailto link within Body 2 | 3 | Timestamp: 20201214175636 4 | 5 | Seq: 6 6 | 7 | Body: 8 | 9 | Let's send a note to [Herb Bowie](mailto:hbowie@umich.edu). 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/Mailto link within Link field.txt: -------------------------------------------------------------------------------- 1 | Title: Mailto link within Link field 2 | 3 | Link: mailto:hbowie@mac.com 4 | 5 | Timestamp: 20201214175524 6 | 7 | Seq: 5 8 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | intro 20201213214716 3 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/http link within Body.txt: -------------------------------------------------------------------------------- 1 | Title: http link within Body 2 | 3 | Timestamp: 20201214182730 4 | 5 | Seq: 3 6 | 7 | Body: 8 | 9 | Check out <http://notenik.net>! 10 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/http link within Link field.txt: -------------------------------------------------------------------------------- 1 | Title: http link within Link field 2 | 3 | Link: http://practopian.org 4 | 5 | Seq: 1 6 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/https link within Body.txt: -------------------------------------------------------------------------------- 1 | Title: https link within Body 2 | 3 | Timestamp: 20201214182730 4 | 5 | Seq: 4 6 | 7 | Body: 8 | 9 | Check out [Notenik.net](https://notenik.net)! 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/https link within Link field.txt: -------------------------------------------------------------------------------- 1 | Title: https link within Link field 2 | 3 | Link: https://notenik.net 4 | 5 | Seq: 2 6 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Timestamp: 8 | 9 | Seq: 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/x-bbedit test within Link field.txt: -------------------------------------------------------------------------------- 1 | Title: x-bbedit test within Link field 2 | 3 | Link: x-bbedit://open?url=file:///Users/hbowie/test.txt 4 | 5 | Timestamp: 20201214190711 6 | 7 | Seq: 7 8 | -------------------------------------------------------------------------------- /Test Collections/Link Tester/x-bbedit within Body.txt: -------------------------------------------------------------------------------- 1 | Title: x-bbedit within Body 2 | 3 | Timestamp: 20201214190711 4 | 5 | Seq: 8 6 | 7 | Body: 8 | 9 | <x-bbedit://open?url=file:///Users/hbowie/test.txt> 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/MMD with Backlinks/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/MMD with Backlinks/Note 1.txt: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Note 1 3 | Seq: 1 4 | Level: 1 5 | Wiki Links: Note 2 6 | Wiki Links: Note 3 7 | --- 8 | 9 | This is the first Note. 10 | 11 | This is a great Note, but [[Note 2]] is also a very good Note. 12 | 13 | (Not to mention [[Note 3]].) 14 | -------------------------------------------------------------------------------- /Test Collections/MMD with Backlinks/Note 2.txt: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Note 2 3 | Seq: 2 4 | Level: 1 5 | Backlinks: Note 1 6 | --- 7 | 8 | This is the second Note. 9 | -------------------------------------------------------------------------------- /Test Collections/MMD with Backlinks/Note 3.txt: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Note 3 3 | Seq: 3 4 | Level: 1 5 | Backlinks: Note 1 6 | --- 7 | 8 | This may be the best of the bunch. 9 | -------------------------------------------------------------------------------- /Test Collections/MMD with Backlinks/Notenik.txt: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Notenik 3 | Tags: Software.Groovy 4 | --- 5 | 6 | A note-taking system cunningly devised by Herb Bowie. 7 | 8 | Learn more at [Notenik.app](https://notenik.app). 9 | 10 | You can delete this starting Note after creating one or two of your own. 11 | -------------------------------------------------------------------------------- /Test Collections/MMD with Backlinks/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Seq: <seq> 6 | 7 | Level: <level: > 8 | 9 | Backlinks: <backlinks> 10 | 11 | Wiki Links: <wikilinks> 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/- INFO-parent-realm.nnk: -------------------------------------------------------------------------------- 1 | Title: Test Collections Markdown Trickery 2 | 3 | Window Numbers: 113.0;69.0;960.0;868.0;500.0; 4 | 5 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/Writings/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/Writings/John Hiatt.mdtext: -------------------------------------------------------------------------------- 1 | Title: John Hiatt 2 | 3 | Backlinks: Writings/Slow Turning 4 | 5 | Body: 6 | 7 | Created by Wiki-style Link found in the Markdown code for the Note titled Slow Turning. 8 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/Writings/Settin' The Woods on Fire.mdtext: -------------------------------------------------------------------------------- 1 | Title: Settin' The Woods on Fire 2 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/Writings/Slow Turning.mdtext: -------------------------------------------------------------------------------- 1 | Title: Slow Turning 2 | 3 | Teaser: 4 | 5 | Written by [[qauthors/John Hiatt]] 6 | 7 | Wiki Links: The Grateful Dead 8 | Wiki Links: John Hiatt 9 | 10 | Body: 11 | 12 | Not performed by [[qauthors/The Grateful Dead]] 13 | 14 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/Writings/The Grateful Dead.mdtext: -------------------------------------------------------------------------------- 1 | Title: The Grateful Dead 2 | 3 | Backlinks: Writings/Slow Turning 4 | 5 | Body: 6 | 7 | Created by Wiki-style Link found in the Markdown code for the Note titled Slow Turning. 8 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/Writings/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Author: <author> 6 | 7 | Teaser: <teaser> 8 | 9 | Backlinks: <backlinks> 10 | 11 | Wiki Links: <wikilinks> 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/Bob Weir.mdtext: -------------------------------------------------------------------------------- 1 | Title: Bob Weir 2 | 3 | Backlinks: Writings/Sugar Magnolia 4 | 5 | Body: 6 | 7 | Created by Wiki-style Link found in the body of the Note titled Sugar Magnolia. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/Joe Biden.mdtext: -------------------------------------------------------------------------------- 1 | Title: Joe Biden 2 | 3 | Backlinks: Writings/One Family, One Earth, One Future 4 | 5 | Body: 6 | 7 | Created by Wiki-style Link found in the body of the Note titled One Family, One Earth, One Future. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/Robert Hunter.mdtext: -------------------------------------------------------------------------------- 1 | Title: Robert Hunter 2 | 3 | Backlinks: Writings/Sugar Magnolia 4 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/The Grateful Dead.mdtext: -------------------------------------------------------------------------------- 1 | Title: The Grateful Dead 2 | 3 | Backlinks: Writings/Sugar Magnolia 4 | 5 | Body: 6 | 7 | Created by Wiki-style Link found in the body of the Note titled Sugar Magnolia. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/modi.mdtext: -------------------------------------------------------------------------------- 1 | Title: modi 2 | 3 | Backlinks: Writings/One Family, One Earth, One Future 4 | 5 | Body: 6 | 7 | Created by Wiki-style Link found in the body of the Note titled One Family, One Earth, One Future. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Markdown Trickery/authors/template.mdtext: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | AKA: <aka> 6 | 7 | Backlinks: <backlinks> 8 | 9 | Wiki Links: <wikilinks> 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2023-09-27 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2023-09-27 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2023-10-28 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2023-10-28 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2023-11-28 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2023-11-28 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2023-12-28 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2023-12-28 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2024-01-28 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2024-01-28 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2024-02-28 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2024-02-28 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/2024-03-28 Access Labs Monthly Meeting Agenda.txt: -------------------------------------------------------------------------------- 1 | Title: 2024-03-28 Access Labs Monthly Meeting Agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Body: 6 | 7 | A note-taking system cunningly devised by Herb Bowie. 8 | 9 | Learn more at [Notenik.app](https://notenik.app). 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/agenda.txt: -------------------------------------------------------------------------------- 1 | Title: agenda 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the Markdown code for the Note titled Test Log Note. 6 | -------------------------------------------------------------------------------- /Test Collections/Meeting Notes/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Missing Link Targets/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Missing Link Targets/A Note Pointing to Another Note.txt: -------------------------------------------------------------------------------- 1 | Title: A Note Pointing to Another Note 2 | 3 | Body: 4 | 5 | Don't forget that Notenik is [[Open Source Software]]! 6 | -------------------------------------------------------------------------------- /Test Collections/Missing Link Targets/Another Note Pointing to a Second Note.txt: -------------------------------------------------------------------------------- 1 | Title: Another Note Pointing to a Second Note 2 | 3 | Body: 4 | 5 | Oh, and did I mention that Notenik is [[completely free]]? 6 | -------------------------------------------------------------------------------- /Test Collections/Missing Link Targets/Open Source Software.txt: -------------------------------------------------------------------------------- 1 | Title: Open Source Software 2 | 3 | Body: 4 | 5 | Created by Wiki Style Link found in the body of the Note titled [[A Note Pointing to Another Note]]. 6 | -------------------------------------------------------------------------------- /Test Collections/Missing Link Targets/completely free.txt: -------------------------------------------------------------------------------- 1 | Title: completely free 2 | 3 | Body: 4 | 5 | Created by Wiki-style Link found in the body of the Note titled [[Another Note Pointing to a Second Note]]. 6 | -------------------------------------------------------------------------------- /Test Collections/Missing Link Targets/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/Note 1 - 0 - Idea.txt: -------------------------------------------------------------------------------- 1 | Title: Note 1 - 0 - Idea 2 | 3 | Status: 0 - Idea 4 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/Note 2 - 9 - closed.txt: -------------------------------------------------------------------------------- 1 | Title: Note 2 - 9 - closed 2 | 3 | Status: 9 - Closed 4 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/Note 3 - draft.txt: -------------------------------------------------------------------------------- 1 | Title: Note 3 - draft 2 | 3 | Status: draft 4 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/Note 4 - published.txt: -------------------------------------------------------------------------------- 1 | Title: Note 4 - published 2 | 3 | Status: published 4 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/Note 5 - canceled.txt: -------------------------------------------------------------------------------- 1 | Title: Note 5 - canceled 2 | 3 | Status: 8 - Canceled 4 | -------------------------------------------------------------------------------- /Test Collections/Mixed Status Values/Note 6 - No status.txt: -------------------------------------------------------------------------------- 1 | Title: Note 6 - No status 2 | -------------------------------------------------------------------------------- /Test Collections/MultiMarkdown Documents/A Second MultiMarkdown Document.md: -------------------------------------------------------------------------------- 1 | Title: A Second MultiMarkdown Document 2 | Author: Herb Bowie 3 | Date: 14 Feb 2022 4 | Comment: Isn't this wonderful? 5 | 6 | And now, a MultiMarkdown doc added thru Notenik. 7 | -------------------------------------------------------------------------------- /Test Collections/MultiMarkdown Documents/A Third MultiMarkdown Doc.md: -------------------------------------------------------------------------------- 1 | Title: A Third MultiMarkdown Doc 2 | Author: Herb Bowie 3 | Date: 14 Feb 2022 4 | Comment: Isn't it wonderful to have a parser that handles so many different file and metadata formats? I think so. 5 | 6 | And here is the body. 7 | -------------------------------------------------------------------------------- /Test Collections/MultiMarkdown Documents/Adding Another Through Notenik.md: -------------------------------------------------------------------------------- 1 | Title: Adding Another Through Notenik 2 | Author: Joseph Conrad 3 | Date: 14 Feb 2022 4 | Comment: A Heart of Darkness 5 | 6 | Let's see how this works. 7 | -------------------------------------------------------------------------------- /Test Collections/Multiple NSTextView fields/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Multiple NSTextView fields/Latest Version Notes.txt: -------------------------------------------------------------------------------- 1 | Title: Latest Version Notes 2 | 3 | Link: https://notenik.app/knowledge-base/EPUB/html/version-12.1.0.html 4 | -------------------------------------------------------------------------------- /Test Collections/Multiple NSTextView fields/Notenik Forum.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik Forum 2 | 3 | Link: https://discourse.notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Multiple NSTextView fields/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Attribution: <attribution> 8 | 9 | Code: <code> 10 | 11 | Teaser: <teaser> 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/New Collection/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/New Collection/Notenik.md: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Seq: 1 4 | -------------------------------------------------------------------------------- /Test Collections/New Collection/Our Second Note.md: -------------------------------------------------------------------------------- 1 | Title: Our Second Note 2 | 3 | Body: 4 | 5 | Let's add a body! 6 | -------------------------------------------------------------------------------- /Test Collections/New Collection/template.md: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Seq: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy Notenik URL from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Notenik URL from ns0 2 | 3 | Link: notenik://open?shortcut=ns0&id=linktoweb 4 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy Timestamp from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Timestamp from ns0 2 | 3 | Body: 4 | 5 | 20220313190229 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy Title from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Title from ns0 2 | 3 | Body: 4 | 5 | Copy Wikilink 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy Wikilink from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Wikilink from ns0 2 | 3 | Body: 4 | 5 | [Notenik](notenik://open?shortcut=ns0&id=notenik) 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy and Paste Timestamp from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy and Paste Timestamp from ns0 2 | 3 | Body: 4 | 5 | 20220313190358 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy and Paste Title from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy and Paste Title from ns0 2 | 3 | Body: 4 | 5 | Copy Title 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy and Paste Wikilink from ns0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy and Paste Wikilink from ns0 2 | 3 | Body: 4 | 5 | [notenik-dot-app](notenik://open?shortcut=ns0&id=linktoweb) 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Copy.txt: -------------------------------------------------------------------------------- 1 | Title: Copy 2 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.app 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie. 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 1/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 2/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 2/Copy Title from NS0.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Title from NS0 2 | 3 | Body: 4 | 5 | notenik-dot-app 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector 2/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Copy Title.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Title 2 | 3 | Body: 4 | 5 | notenik-dot-app 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Copy Wikilink.txt: -------------------------------------------------------------------------------- 1 | Title: Copy Wikilink 2 | 3 | Body: 4 | 5 | notenik-dot-app 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Copy and Paste Timestamp.txt: -------------------------------------------------------------------------------- 1 | Title: Copy and Paste Timestamp 2 | 3 | Timestamp: 20220426223111 4 | 5 | Body: 6 | 7 | [[20220314212504]] 8 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Copy and Paste Title.txt: -------------------------------------------------------------------------------- 1 | Title: Copy and Paste Title 2 | 3 | Body: 4 | 5 | notenik-dot-app 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Copy and Paste Wikilink.txt: -------------------------------------------------------------------------------- 1 | Title: Copy and Paste Wikilink 2 | 3 | Body: 4 | 5 | [[Notenik]] 6 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Link to Web.txt: -------------------------------------------------------------------------------- 1 | Title: Link to Web 2 | 3 | Link: https://notenik.app 4 | 5 | AKA: notenik-dot-app 6 | 7 | Body: 8 | 9 | Here's a launchable link to a website. 10 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.app 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie. 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | copyandpastewikilink 3 | linktoweb 20220313190358 4 | notenik 20220313190229 5 | copywikilink 20220314212504 6 | copyandpastetitle 7 | -------------------------------------------------------------------------------- /Test Collections/Note Selector Tests/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | AKA: <aka> 8 | 9 | Timestamp: 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Note Title Display/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Note Title Display/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Status: 0 - Idea; 1 - Proposed; 2 - Approved; 3 - Planned; 4 - In Work; 5 - Held; 6 - Completed; 7 - FollowUp; 8 - Canceled; 9 - Closed; 8 | 9 | Seq: <seq> 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/2nd Note to Link From.txt: -------------------------------------------------------------------------------- 1 | Title: 2nd Note to Link From 2 | 3 | Body: 4 | 5 | OK, now let's try this using a [timestamp](https://ntnk.app/20191211193116). 6 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/2nd Note to Link To.txt: -------------------------------------------------------------------------------- 1 | Title: 2nd Note to Link To 2 | 3 | Body: 4 | 5 | Let's try this now with timestamps. 6 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/3rd Note to Link From.txt: -------------------------------------------------------------------------------- 1 | Title: 3rd Note to Link From 2 | 3 | Body: 4 | 5 | Let's see if we can get this to work without reloading. 6 | 7 | Let's link to [20191211195917](https://ntnk.app/20191211195917) 8 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/3rd Note to Link To.txt: -------------------------------------------------------------------------------- 1 | Title: 3rd Note to Link To 2 | 3 | Body: 4 | 5 | Shouldn't have to reload collection before this works. 6 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/4th Note to Link From.txt: -------------------------------------------------------------------------------- 1 | Title: 4th Note to Link From 2 | 3 | Body: 4 | 5 | This time we're going to try wiki-style double-bracket links. 6 | 7 | So let's go to [[Note to Link From]]. 8 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/5th Note to Link From.txt: -------------------------------------------------------------------------------- 1 | Title: 5th Note to Link From 2 | 3 | Body: 4 | 5 | Now let's try double-brackets with a timestamp. 6 | 7 | Let's link to [[20191211195917]]. 8 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/Note to Link From.txt: -------------------------------------------------------------------------------- 1 | Title: Note to Link From 2 | 3 | Timestamp: 20191210213329 4 | 5 | Body: 6 | 7 | Trying to figure out how to link from one note to [another](https://ntnk.app/note-to-link-to). 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/Note to Link To.txt: -------------------------------------------------------------------------------- 1 | Title: Note to Link To 2 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | notetolinkfrom 20191210213329 3 | -------------------------------------------------------------------------------- /Test Collections/Note linkage/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Timestamp: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Chapter 1.txt: -------------------------------------------------------------------------------- 1 | Title: Chapter 1 2 | 3 | Seq: 1.1.1 4 | 5 | Level: 3 - 6 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Chapter 2.txt: -------------------------------------------------------------------------------- 1 | Title: Chapter 2 2 | 3 | Tags: Democracy 4 | 5 | Seq: 1.1.2 6 | 7 | Level: 3 - 8 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Chapter 3.txt: -------------------------------------------------------------------------------- 1 | Title: Chapter 3 2 | 3 | Seq: 1.2.1 4 | 5 | Level: 3 - 6 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/First Section.txt: -------------------------------------------------------------------------------- 1 | Title: First Section 2 | 3 | Tags: Equality 4 | 5 | Seq: 1.1 6 | 7 | Level: 2 - 8 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie 10 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Second Section.txt: -------------------------------------------------------------------------------- 1 | Title: Second Section 2 | 3 | Seq: 1.2 4 | 5 | Level: 2 - 6 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Some Details.txt: -------------------------------------------------------------------------------- 1 | Title: Some Details 2 | 3 | Seq: 1.2.1.1 4 | 5 | Level: 4 - 6 | 7 | Body: 8 | 9 | And here is a real paragraph & some funny characters. It’s a good thing that 2 < 3 && 6 > 5. “I don’t think I could stand it otherwise.” 10 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/Test Outline for export to Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Test Outline for export to Notenik 2 | 3 | Seq: 1 4 | 5 | Level: 1 - 6 | -------------------------------------------------------------------------------- /Test Collections/OPML Import/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Seq: <seq> 8 | 9 | Level: <level: > 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Outlining/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Outlining/A Section about Films.txt: -------------------------------------------------------------------------------- 1 | Title: A Section about Films 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 2 6 | 7 | Level: 2 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/A Section about Songs.txt: -------------------------------------------------------------------------------- 1 | Title: A Section about Songs 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1 6 | 7 | Level: 2 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/All about Art.txt: -------------------------------------------------------------------------------- 1 | Title: All about Art 2 | 3 | Status: 0 - Idea 4 | 5 | Level: 1 6 | -------------------------------------------------------------------------------- /Test Collections/Outlining/Dire Wolf.txt: -------------------------------------------------------------------------------- 1 | Title: Dire Wolf 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1.2.5 6 | 7 | Level: 4 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/New Speedway Boogie.txt: -------------------------------------------------------------------------------- 1 | Title: New Speedway Boogie 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1.2.4 6 | 7 | Level: 4 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/Songs by Chuck Berry.txt: -------------------------------------------------------------------------------- 1 | Title: Songs by Chuck Berry 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1.1 6 | 7 | Level: 3 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/Songs by the Grateful Dead.txt: -------------------------------------------------------------------------------- 1 | Title: Songs by the Grateful Dead 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1.2 6 | 7 | Level: 3 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/The Promised Land.txt: -------------------------------------------------------------------------------- 1 | Title: The Promised Land 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1.1.1 6 | 7 | Level: 4 8 | -------------------------------------------------------------------------------- /Test Collections/Outlining/Uncle John-s Band.txt: -------------------------------------------------------------------------------- 1 | Title: Uncle John's Band 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 1.2.5 6 | 7 | Level: 4 8 | -------------------------------------------------------------------------------- /Test Collections/Plain Markdown Files/A Markdown File with Tags.md: -------------------------------------------------------------------------------- 1 | # A Markdown File with Tags 2 | #groovy 3 | 4 | This is the body of a groovy note. -------------------------------------------------------------------------------- /Test Collections/Plain Markdown Files/A Markdown File.md: -------------------------------------------------------------------------------- 1 | # A Markdown File 2 | 3 | This is a file starting with a Markdown level 1 heading. 4 | -------------------------------------------------------------------------------- /Test Collections/Plain Markdown Files/Added Markdown File with Tags.md: -------------------------------------------------------------------------------- 1 | # Added Markdown File with Tags 2 | #groovy 3 | 4 | Another groovy Note! 5 | -------------------------------------------------------------------------------- /Test Collections/Plain Text files/Added Plain Text File.txt: -------------------------------------------------------------------------------- 1 | This is the body of the Note. 2 | -------------------------------------------------------------------------------- /Test Collections/Plain Text files/And a Fourth File.txt: -------------------------------------------------------------------------------- 1 | Also Plain text 2 | -------------------------------------------------------------------------------- /Test Collections/Plain Text files/Another Plain Text File.txt: -------------------------------------------------------------------------------- 1 | This one was created by Notenik. 2 | -------------------------------------------------------------------------------- /Test Collections/Plain Text files/First Plain Text File.txt: -------------------------------------------------------------------------------- 1 | This is a plain text file without any metadata or headings. -------------------------------------------------------------------------------- /Test Collections/Queries and Reports/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Related Collections/Authors/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Related Collections/Authors/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Related Collections/Authors/template.txt: -------------------------------------------------------------------------------- 1 | Author: <id, author> 2 | 3 | Title: 4 | 5 | Tags: 6 | 7 | Link: 8 | 9 | Wikipedia Link: <link> 10 | 11 | Alternate Link: <link> 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/Report Samples/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Report Samples/Test Note 2.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 2 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 2 6 | 7 | Body: 8 | 9 | Yes, it's another note. 10 | -------------------------------------------------------------------------------- /Test Collections/Report Samples/Test Note 3.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 3 2 | 3 | Status: 0 - Idea 4 | 5 | Seq: 3 6 | 7 | Body: 8 | 9 | And the notes just keep coming! 10 | -------------------------------------------------------------------------------- /Test Collections/Report Samples/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Status: 8 | 9 | Type: 10 | 11 | Seq: 12 | 13 | Date: 14 | 15 | Recurs: 16 | 17 | Author: 18 | 19 | Index: 20 | 21 | Code: 22 | 23 | Teaser: 24 | 25 | Body: 26 | 27 | -------------------------------------------------------------------------------- /Test Collections/Scrolling Sync 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Scrolling Sync 1/Notes on Scrolling.txt: -------------------------------------------------------------------------------- 1 | Title: Notes on Scrolling 2 | 3 | Body: 4 | 5 | ## Going from Edit to Display 6 | 7 | 8 | -------------------------------------------------------------------------------- /Test Collections/Scrolling Sync 1/files/When I Paint My Masterpiece | Bob Dylan with The Band.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Test Collections/Scrolling Sync 1/files/When I Paint My Masterpiece | Bob Dylan with The Band.jpg.jpg -------------------------------------------------------------------------------- /Test Collections/Scrolling Sync 1/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/Fifth Note.txt: -------------------------------------------------------------------------------- 1 | Title: Fifth Note 2 | 3 | Seq: 5 4 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/First Note.txt: -------------------------------------------------------------------------------- 1 | Title: First Note 2 | 3 | Seq: 1 4 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/Fourth Note.txt: -------------------------------------------------------------------------------- 1 | Title: Fourth Note 2 | 3 | Seq: 4 4 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/Second Note.txt: -------------------------------------------------------------------------------- 1 | Title: Second Note 2 | 3 | Seq: 2 4 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/Third Note.txt: -------------------------------------------------------------------------------- 1 | Title: Third Note 2 | 3 | Seq: 3 4 | -------------------------------------------------------------------------------- /Test Collections/Seq 1/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Seq: 6 | 7 | Link: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Set Command/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Set Command/Note Number 1.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 1 2 | 3 | Seq: 1 4 | -------------------------------------------------------------------------------- /Test Collections/Set Command/Note Number 2.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 2 2 | 3 | Seq: 2 4 | -------------------------------------------------------------------------------- /Test Collections/Set Command/Note Number 3.txt: -------------------------------------------------------------------------------- 1 | Title: Note Number 3 2 | 3 | Seq: 3 4 | -------------------------------------------------------------------------------- /Test Collections/Set Command/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Seq: 6 | 7 | Link: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Short IDs/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Short IDs/Not Only Text Either.txt: -------------------------------------------------------------------------------- 1 | Title: Not Only Text Either 2 | 3 | Short ID: noote 4 | -------------------------------------------------------------------------------- /Test Collections/Short IDs/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Short ID: note 6 | 7 | Link: https://notenik.net 8 | 9 | Body: 10 | 11 | A note-taking system cunningly devised by Herb Bowie 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Short IDs/That-s No Way to Say Goodbye or Hello Either and I Wish You Wouldn-t.txt: -------------------------------------------------------------------------------- 1 | Title: That's No Way to Say Goodbye or Hello Either and I Wish You Wouldn't 2 | 3 | Short ID: tnwsgohe 4 | -------------------------------------------------------------------------------- /Test Collections/Short IDs/When You Wish Upon a Star.txt: -------------------------------------------------------------------------------- 1 | Title: When You Wish Upon a Star 2 | 3 | Short ID: wywus 4 | -------------------------------------------------------------------------------- /Test Collections/Short IDs/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Short ID: 4 | 5 | Tags: <tags> 6 | 7 | Link: <link> 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Snippets 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Snippets 1/Another Coding Snippet.txt: -------------------------------------------------------------------------------- 1 | Title: Another Coding Snippet 2 | 3 | Code: 4 | 5 | Another line of code 6 | -------------------------------------------------------------------------------- /Test Collections/Snippets 1/Coding Snippet.txt: -------------------------------------------------------------------------------- 1 | Title: Coding Snippet 2 | 3 | Link: https://swiftians.com 4 | 5 | Code: 6 | 7 | Line 1 8 | 9 | Body: This is the body. 10 | -------------------------------------------------------------------------------- /Test Collections/Snippets 1/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Snippets 1/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Code: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/- INFO-parent-realm.nnk: -------------------------------------------------------------------------------- 1 | Title: Test Collections Stashing Tests 2 | 3 | Window Numbers: 308.0;194.0;1079.0;795.0;500.0; 4 | 5 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/Stashing Collection 1/- notenik_files/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains files created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/Stashing Collection 1/- notenik_files/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | rateandreviewnotenikinthemacappstore 20241003235525 3 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/Stashing Collection 1/Referring note.txt: -------------------------------------------------------------------------------- 1 | Title: Referring note 2 | 3 | Timestamp: 20241003235618 4 | 5 | Body: 6 | 7 | Job 1 is to [[Rate and Review Notenik in the Mac App Store]]. 8 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/Stashing Collection 2/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains files created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/Stashing Collection 2/alias.txt: -------------------------------------------------------------------------------- 1 | Title ID Timestamp 2 | zettelkasten 20210209215032 3 | -------------------------------------------------------------------------------- /Test Collections/Stashing Tests/Stashing Collection 2/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Timestamp: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Subfolders - Basic/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Subfolders - Basic/Project A/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Subfolders - Basic/Project A/Task 001.txt: -------------------------------------------------------------------------------- 1 | Title: Task 001 2 | 3 | Tags: coding 4 | 5 | Date: 2024-04-15 6 | -------------------------------------------------------------------------------- /Test Collections/Subfolders - Basic/Project B/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Subfolders - Basic/Project B/Task 002.txt: -------------------------------------------------------------------------------- 1 | Title: Task 002 2 | 3 | Status: 2 - Approved 4 | 5 | Date: 2024-04-15 6 | -------------------------------------------------------------------------------- /Test Collections/Table of Contents/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Table of Contents/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/Fifth Note.txt: -------------------------------------------------------------------------------- 1 | Title: Fifth Note 2 | 3 | Tags: ddd 4 | 5 | Body: 6 | 7 | Tags of ddd 8 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/First Note.txt: -------------------------------------------------------------------------------- 1 | Title: First Note 2 | 3 | Body: 4 | 5 | Note with no tags 6 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/Fourth Note.txt: -------------------------------------------------------------------------------- 1 | Title: Fourth Note 2 | 3 | Tags: aaa, bbb.cc, ddd 4 | 5 | Body: 6 | 7 | Original tags are aaa, bbb.cc, ddd 8 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/Second Note.txt: -------------------------------------------------------------------------------- 1 | Title: Second Note 2 | 3 | Tags: aaa 4 | 5 | Body: 6 | 7 | Original tags are aaa. 8 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/Third Note.txt: -------------------------------------------------------------------------------- 1 | Title: Third Note 2 | 3 | Tags: bbb.cc 4 | 5 | Body: 6 | 7 | Note with tags of bbb.cc 8 | -------------------------------------------------------------------------------- /Test Collections/Tags Mass Change/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/BBEdit.txt: -------------------------------------------------------------------------------- 1 | Title: BBEdit 2 | 3 | Tags: Software 4 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/Daring Fireball.txt: -------------------------------------------------------------------------------- 1 | Title: Daring Fireball 2 | 3 | Tags: website 4 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/MacBook Air.txt: -------------------------------------------------------------------------------- 1 | Title: MacBook Air 2 | 3 | Tags: Hardware.Groovy 4 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Body: 6 | 7 | A note-taking system cunningly devised by Herb Bowie. 8 | 9 | Learn more at [Notenik.app](https://notenik.app). 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/Obsidian.txt: -------------------------------------------------------------------------------- 1 | Title: Obsidian 2 | 3 | Tags: Software.Terrible 4 | -------------------------------------------------------------------------------- /Test Collections/Tags Test/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Task Lists with Custom Template/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Task Lists with Custom Template/Task List.txt: -------------------------------------------------------------------------------- 1 | Title: Task List 2 | 3 | Body: 4 | 5 | Here's what needs to be done: 6 | 7 | - [ ] Compose draft newsletter 8 | - [X] Send out draft to Michael Tarlowe & others 9 | - [ ] Make any needed edits 10 | - [ ] Schedule for send next Wednesday, Dec. 13th 11 | -------------------------------------------------------------------------------- /Test Collections/Task Lists with Custom Template/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Body: 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Tasks 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Tasks 1/Task 1.md: -------------------------------------------------------------------------------- 1 | Title: Task 1 2 | 3 | Status: 0 - Idea 4 | 5 | Date: 23 May 2019 6 | -------------------------------------------------------------------------------- /Test Collections/Tasks 1/Task 2.md: -------------------------------------------------------------------------------- 1 | Title: Task 2 2 | 3 | Status: 4 - In Work 4 | 5 | Date: 23 May 2019 6 | -------------------------------------------------------------------------------- /Test Collections/Tasks 1/Task 3.md: -------------------------------------------------------------------------------- 1 | Title: Task 3 2 | 3 | Status: 6 - Completed 4 | 5 | Date: 30 May 2019 6 | -------------------------------------------------------------------------------- /Test Collections/Tasks 1/Task 4.md: -------------------------------------------------------------------------------- 1 | Title: Task 4 2 | 3 | Status: 9 - Closed 4 | 5 | Date: 05 May 2019 6 | -------------------------------------------------------------------------------- /Test Collections/Tasks 1/template.md: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Status: 6 | 7 | Seq: 8 | 9 | Date: 10 | 11 | Link: 12 | 13 | Body: 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/Text Editing/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Text Editing/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Text Editing/Test Note 1.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 1 2 | 3 | Body: 4 | 5 | This is the text edited in BBEdit. 6 | 7 | -------------------------------------------------------------------------------- /Test Collections/Text Editing/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Text File Imports/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Text File Imports/Another YAML example.mdtext: -------------------------------------------------------------------------------- 1 | Title: Another YAML example 2 | 3 | Timestamp: 20220414193805 4 | 5 | Body: 6 | 7 | This is another Note with YAML frontmatter. 8 | -------------------------------------------------------------------------------- /Test Collections/Text File Imports/Good Old Notenik Note.mdtext: -------------------------------------------------------------------------------- 1 | Title: Good Old Notenik Note 2 | 3 | Tags: test 4 | 5 | Timestamp: 20220414193954 6 | 7 | Body: 8 | 9 | This is a good old Notenik note. 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Text File Imports/Note with No Body Label.mdtext: -------------------------------------------------------------------------------- 1 | Title: Note with No Body Label 2 | 3 | Timestamp: 20220414175618 4 | 5 | Body: 6 | 7 | This is the body of the Note. The text file has no label for the Body section. Notenik assumes that any unidentified text following the Title must be the body. 8 | -------------------------------------------------------------------------------- /Test Collections/Text File Imports/Note with No Labels-txt.mdtext: -------------------------------------------------------------------------------- 1 | Title: Note with No Labels.txt 2 | 3 | Timestamp: 20220414182015 4 | 5 | Body: 6 | 7 | This is the body of a note. The note file does not contain any labels. The title of the note comes from the Note's file name. 8 | -------------------------------------------------------------------------------- /Test Collections/Text File Imports/files/Notenik | logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hbowie/notenik-swift/1a029f55f4db86d94409d61addb9b648d3ead3cb/Test Collections/Text File Imports/files/Notenik | logo.png -------------------------------------------------------------------------------- /Test Collections/Text Formats with Tabs/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Text Formats with Tabs/Another Note.txt: -------------------------------------------------------------------------------- 1 | Title: Another Note 2 | 3 | Body: 4 | 5 | Let's see an outline. 6 | 7 | Top 8 | Section 1 9 | Chapter 1 10 | Chapter 2 11 | Section 2 12 | Chapter 3 13 | -------------------------------------------------------------------------------- /Test Collections/Text Formats with Tabs/template.md: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Date: <date> 8 | 9 | Text Format: <textformat> 10 | 11 | Body: 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/Timestamps/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Timestamps/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/Timestamps/Test Note 1 - B.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 1 - B 2 | 3 | Tags: test 4 | 5 | Timestamp: 20191209201513 6 | 7 | Body: 8 | 9 | Adding a body. 10 | -------------------------------------------------------------------------------- /Test Collections/Timestamps/Test Note 2 - A.txt: -------------------------------------------------------------------------------- 1 | Title: Test Note 2 - A 2 | 3 | Tags: test 4 | 5 | Timestamp: 20191210152755 6 | 7 | Body: 8 | 9 | Another test. 10 | -------------------------------------------------------------------------------- /Test Collections/Timestamps/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Timestamp: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Variables 1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/Variables 1/Base File Name Conversion.txt: -------------------------------------------------------------------------------- 1 | Title: Base File Name Conversion 2 | 3 | Seq: B 4 | 5 | Body: sample.txt 6 | -------------------------------------------------------------------------------- /Test Collections/Variables 1/HTML.txt: -------------------------------------------------------------------------------- 1 | Title: HTML 2 | 3 | Seq: C 4 | 5 | Body: This isn't a **great** "test", but it's a _decent_ one. 6 | -------------------------------------------------------------------------------- /Test Collections/Variables 1/Link Conversion.txt: -------------------------------------------------------------------------------- 1 | Title: Link Conversion 2 | 3 | Seq: J 4 | 5 | Body: Jump to https://www.amazon.com. 6 | -------------------------------------------------------------------------------- /Test Collections/Variables 1/Markdown to HTML.txt: -------------------------------------------------------------------------------- 1 | Title: Markdown to HTML 2 | 3 | Seq: O 4 | 5 | Body: This is a test 6 | - List Item 1 7 | - List Item 2 8 | - List Item 3 9 | 10 | Another paragraph. 11 | 12 | -------------------------------------------------------------------------------- /Test Collections/Variables 1/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Seq: 4 | 5 | Tags: 6 | 7 | Link: 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/Next Version.txt: -------------------------------------------------------------------------------- 1 | Title: Next Version 2 | 3 | Version: 1.1.0 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/Version Number Tests - 001.txt: -------------------------------------------------------------------------------- 1 | Title: Version Number Tests # 001 2 | 3 | Version: 1.1.1 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/Version Number Tests - 002.txt: -------------------------------------------------------------------------------- 1 | Title: Version Number Tests # 002 2 | 3 | Version: 1.1.2 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/Version Number Tests - 003.txt: -------------------------------------------------------------------------------- 1 | Title: Version Number Tests # 003 2 | 3 | Version: 1.1.3 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/Version Numbers Note Title.txt: -------------------------------------------------------------------------------- 1 | Title: Version Numbers Note Title 2 | 3 | Version: 1.0.1 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/Version the First.txt: -------------------------------------------------------------------------------- 1 | Title: Version the First 2 | 3 | Version: 1.0.0 4 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/class/defaults.txt: -------------------------------------------------------------------------------- 1 | Title: Version Number Tests # ### 2 | 3 | Tags: 4 | 5 | Version: 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/Version Numbers/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Version: <seq> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/YAML Frontmatter/A New Markdown file with YAML frontmatter.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: A New Markdown file with YAML frontmatter 3 | keywords: 4 | - tag1 5 | - tag2 6 | author: 7 | - Herb Bowie 8 | --- 9 | 10 | This is the body. 11 | -------------------------------------------------------------------------------- /Test Collections/YAML Frontmatter/A Sample Markdown file with YAML Frontmatter.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: A Sample Markdown file with YAML Frontmatter 3 | keywords: 4 | - A keyword 5 | - Another keyword 6 | author: 7 | - The Zettlr Team 8 | --- 9 | And this is the body. -------------------------------------------------------------------------------- /Test Collections/YAML Notes/.obsidian/app.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Test Collections/YAML Notes/.obsidian/appearance.json: -------------------------------------------------------------------------------- 1 | { 2 | "baseFontSize": 16 3 | } -------------------------------------------------------------------------------- /Test Collections/YAML Notes/.obsidian/hotkeys.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Test Collections/YAML Notes/A New New Addition.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: A New New Addition 3 | tags: 4 | - #new 5 | layout: post 6 | authors: 7 | - Herb Bowie 8 | --- 9 | This is the body. 10 | -------------------------------------------------------------------------------- /Test Collections/YAML Notes/Added YAML Note.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: Added YAML Note 3 | tags: 4 | - #Hip 5 | - #YAML 6 | - #example 7 | layout: test 8 | authors: 9 | - Herb Bowie 10 | - Pauline Bowie 11 | --- 12 | 13 | Added within Notenik. And modified. 14 | 15 | -------------------------------------------------------------------------------- /Test Collections/YAML Notes/Another YAML example.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: Another YAML example 3 | layout: post 4 | --- 5 | 6 | 7 | This is another Note with YAML frontmatter. 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/YAML Notes/Note with YAML Frontmatter.txt: -------------------------------------------------------------------------------- 1 | --- 2 | title: Note with YAML Frontmatter 3 | tags: 4 | - #Educational 5 | - #Hip 6 | - #Tasty 7 | - #groovy 8 | status: published 9 | --- 10 | 11 | This is a note with YAML frontmatter. And now it's been updated. 12 | 13 | -------------------------------------------------------------------------------- /Test Collections/YAML with Longtext/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/YAML with Longtext/Notenik.txt: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Notenik 3 | Tags: 4 | - Software/Groovy 5 | --- 6 | A note-taking system cunningly devised by Herb Bowie. 7 | 8 | Learn more at [Notenik.app](https://notenik.app). 9 | 10 | You can delete this starting Note after creating one or two of your own. 11 | -------------------------------------------------------------------------------- /Test Collections/YAML with Longtext/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Teaser: <teaser> 6 | 7 | Preview: <longtext> 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.app 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie. 10 | 11 | You can delete this starting Note after creating one or two of your own. 12 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/sub.folder.1/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/sub.folder.1/Task 2.txt: -------------------------------------------------------------------------------- 1 | Title: Task 2 2 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/sub.folder.1/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/sub.folder.2/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.app 4 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/sub.folder.2/Task 1.txt: -------------------------------------------------------------------------------- 1 | Title: Task 1 2 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/sub.folder.2/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Tags: <tags> 4 | 5 | Link: <link> 6 | 7 | Body: 8 | 9 | -------------------------------------------------------------------------------- /Test Collections/folder.with.dots/template.txt: -------------------------------------------------------------------------------- 1 | Title: <title> 2 | 3 | Folder: <folder> 4 | 5 | Tags: <tags> 6 | 7 | Link: <link> 8 | 9 | Body: 10 | 11 | -------------------------------------------------------------------------------- /Test Collections/iWisdom Import/- README.txt: -------------------------------------------------------------------------------- 1 | This folder contains a collection of notes created by the Notenik application. 2 | 3 | Learn more at https://Notenik.net 4 | -------------------------------------------------------------------------------- /Test Collections/iWisdom Import/Notenik.txt: -------------------------------------------------------------------------------- 1 | Title: Notenik 2 | 3 | Tags: Software.Groovy 4 | 5 | Link: https://notenik.net 6 | 7 | Body: 8 | 9 | A note-taking system cunningly devised by Herb Bowie of PowerSurge Publishing 10 | -------------------------------------------------------------------------------- /Test Collections/iWisdom Import/template.txt: -------------------------------------------------------------------------------- 1 | Title: 2 | 3 | Tags: 4 | 5 | Link: 6 | 7 | Body: 8 | 9 | --------------------------------------------------------------------------------