From 68d79a0f8d6147bc9e7834f7a6ed83a80748fa29 Mon Sep 17 00:00:00 2001 From: anoduck <11767-anoduck@users.noreply.gitgud.io> Date: Tue, 15 Oct 2024 19:29:53 -0400 Subject: feat(content): :sparkles: New content, frontmatter conf, etc... New content created, frontmatter config fixes, etc, etc... --- .../config/content/pagefolders/content.json | 1 + .../config/content/pagefolders/evidence.json | 1 + .frontmatter/config/content/pagefolders/legal.json | 1 + .../config/content/pagefolders/persons.json | 1 + .frontmatter/config/content/pagefolders/posts.json | 1 + .frontmatter/config/content/pagefolders/video.json | 1 + .frontmatter/config/content/placeholders/.gitkeep | 0 .frontmatter/config/content/snippets/pdf.json | 15 +++ .frontmatter/config/custom/.gitkeep | 0 .frontmatter/config/data/files/timeline.json | 1 + .frontmatter/config/data/folders/data.json | 1 + .../config/taxonomy/contenttypes/docs.json | 51 +++++++++ .../config/taxonomy/contenttypes/legal.json | 77 ++++++++++++++ .../config/taxonomy/contenttypes/minimal.json | 30 ++++++ .../config/taxonomy/contenttypes/page.json | 115 +++++++++++++++++++++ .../config/taxonomy/contenttypes/person.json | 77 ++++++++++++++ .../config/taxonomy/contenttypes/post.json | 69 +++++++++++++ .frontmatter/config/taxonomy/docs.json | 50 --------- .frontmatter/config/taxonomy/fieldgroups/.gitkeep | 0 .frontmatter/config/taxonomy/legal.json | 76 -------------- .frontmatter/config/taxonomy/minimal.json | 29 ------ .frontmatter/config/taxonomy/page.json | 114 -------------------- .frontmatter/config/taxonomy/person.json | 76 -------------- .frontmatter/database/taxonomyDb.json | 2 +- .frontmatter/ui/external.js | 7 -- 25 files changed, 443 insertions(+), 353 deletions(-) create mode 100644 .frontmatter/config/content/placeholders/.gitkeep create mode 100644 .frontmatter/config/content/snippets/pdf.json create mode 100644 .frontmatter/config/custom/.gitkeep create mode 100644 .frontmatter/config/taxonomy/contenttypes/docs.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/legal.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/minimal.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/page.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/person.json create mode 100644 .frontmatter/config/taxonomy/contenttypes/post.json delete mode 100644 .frontmatter/config/taxonomy/docs.json create mode 100644 .frontmatter/config/taxonomy/fieldgroups/.gitkeep delete mode 100644 .frontmatter/config/taxonomy/legal.json delete mode 100644 .frontmatter/config/taxonomy/minimal.json delete mode 100644 .frontmatter/config/taxonomy/page.json delete mode 100644 .frontmatter/config/taxonomy/person.json delete mode 100644 .frontmatter/ui/external.js (limited to '.frontmatter') diff --git a/.frontmatter/config/content/pagefolders/content.json b/.frontmatter/config/content/pagefolders/content.json index 367b72d..6205ff5 100644 --- a/.frontmatter/config/content/pagefolders/content.json +++ b/.frontmatter/config/content/pagefolders/content.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", "title": "content", "path": "[[workspace]]/content", "excludeSubdir": true, diff --git a/.frontmatter/config/content/pagefolders/evidence.json b/.frontmatter/config/content/pagefolders/evidence.json index 8c70f28..17ec44b 100644 --- a/.frontmatter/config/content/pagefolders/evidence.json +++ b/.frontmatter/config/content/pagefolders/evidence.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", "title": "Evidence", "path": "[[workspace]]/content/evidence", "previewPath": "evidence", diff --git a/.frontmatter/config/content/pagefolders/legal.json b/.frontmatter/config/content/pagefolders/legal.json index 4aa2b4d..bafcb79 100644 --- a/.frontmatter/config/content/pagefolders/legal.json +++ b/.frontmatter/config/content/pagefolders/legal.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", "title": "Legal", "path": "[[workspace]]/content/legal", "previewPath": "legal", diff --git a/.frontmatter/config/content/pagefolders/persons.json b/.frontmatter/config/content/pagefolders/persons.json index 93e9635..79d609f 100644 --- a/.frontmatter/config/content/pagefolders/persons.json +++ b/.frontmatter/config/content/pagefolders/persons.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", "title": "Persons", "path": "[[workspace]]/content/persons", "previewPath": "persons", diff --git a/.frontmatter/config/content/pagefolders/posts.json b/.frontmatter/config/content/pagefolders/posts.json index 0327d7f..8cec516 100644 --- a/.frontmatter/config/content/pagefolders/posts.json +++ b/.frontmatter/config/content/pagefolders/posts.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", "title": "Posts", "path": "[[workspace]]/content/posts", "previewPath": "posts", diff --git a/.frontmatter/config/content/pagefolders/video.json b/.frontmatter/config/content/pagefolders/video.json index dc1e565..077590d 100644 --- a/.frontmatter/config/content/pagefolders/video.json +++ b/.frontmatter/config/content/pagefolders/video.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/content.pagefolders.schema.json", "title": "Video", "path": "[[workspace]]/content/video", "previewPath": "video", diff --git a/.frontmatter/config/content/placeholders/.gitkeep b/.frontmatter/config/content/placeholders/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.frontmatter/config/content/snippets/pdf.json b/.frontmatter/config/content/snippets/pdf.json new file mode 100644 index 0000000..a12f67d --- /dev/null +++ b/.frontmatter/config/content/snippets/pdf.json @@ -0,0 +1,15 @@ +{ + "embed pdf": { + "description": "Embeds a pdf file into page using html5 tag \"embed\".", + "body": "", + "fields": [ + { + "name": "PDF File", + "title": "PDF File", + "type": "string", + "single": true, + "default": "" + } + ] + } +} \ No newline at end of file diff --git a/.frontmatter/config/custom/.gitkeep b/.frontmatter/config/custom/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.frontmatter/config/data/files/timeline.json b/.frontmatter/config/data/files/timeline.json index c9d279e..cb0ef1b 100644 --- a/.frontmatter/config/data/files/timeline.json +++ b/.frontmatter/config/data/files/timeline.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/data.files.schema.json", "id": "timeline", "title": "Timeline", "file": "[[workspace]]/data/timeline.yml", diff --git a/.frontmatter/config/data/folders/data.json b/.frontmatter/config/data/folders/data.json index 6925b21..e88d8a9 100644 --- a/.frontmatter/config/data/folders/data.json +++ b/.frontmatter/config/data/folders/data.json @@ -1,4 +1,5 @@ { + "$schema": "https://frontmatter.codes/config/data.folders.schema.json", "id": "Data", "path": "[[workspace]]/data", "singleEntry": false, diff --git a/.frontmatter/config/taxonomy/contenttypes/docs.json b/.frontmatter/config/taxonomy/contenttypes/docs.json new file mode 100644 index 0000000..f527618 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/docs.json @@ -0,0 +1,51 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "Docs", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Categories", + "name": "categories", + "type": "choice", + "choices": [ + "Persons", + "Evidence", + "Legal" + ] + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "docs" + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/legal.json b/.frontmatter/config/taxonomy/contenttypes/legal.json new file mode 100644 index 0000000..703d2b2 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/legal.json @@ -0,0 +1,77 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "Legal", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime", + "isPublishDate": true + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "type", + "name": "type", + "type": "string", + "single": true + }, + { + "title": "draft", + "name": "draft", + "type": "draft" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "url", + "name": "url", + "type": "string", + "single": true + }, + { + "title": "author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "authorURL", + "name": "authorURL", + "type": "string", + "single": true + }, + { + "title": "origin", + "name": "origin", + "type": "string", + "single": true + }, + { + "title": "originURL", + "name": "originURL", + "type": "string", + "single": true + } + ] + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/minimal.json b/.frontmatter/config/taxonomy/contenttypes/minimal.json new file mode 100644 index 0000000..d3fc70d --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/minimal.json @@ -0,0 +1,30 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "Minimal", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "minimal" + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/page.json b/.frontmatter/config/taxonomy/contenttypes/page.json new file mode 100644 index 0000000..cae9564 --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/page.json @@ -0,0 +1,115 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "page", + "pageBundle": false, + "previewPath": null, + "fields": [ + { + "title": "Title", + "name": "title", + "type": "string", + "single": true + }, + { + "title": "Date", + "name": "date", + "type": "datetime", + "default": "{{now}}", + "isPublishDate": true + }, + { + "title": "Description", + "name": "description", + "type": "string" + }, + { + "title": "Draft", + "name": "draft", + "type": "draft" + }, + { + "title": "Tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Icon", + "name": "icon", + "type": "string", + "single": true + }, + { + "title": "Type", + "name": "type", + "type": "choice", + "choices": [ + "default", + "docs", + "minimal" + ], + "default": "default" + }, + { + "title": "Metadata", + "name": "metadata", + "type": "choice", + "choices": [ + "full", + "original", + "none" + ], + "default": "full" + }, + { + "title": "Download", + "name": "download", + "type": "string", + "single": true + }, + { + "title": "Thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "URL", + "name": "url", + "type": "image" + }, + { + "title": "Author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "AuthorUrl", + "name": "authorUrl", + "type": "string" + }, + { + "title": "Origin", + "name": "origin", + "type": "string", + "single": true + }, + { + "title": "OriginUrl", + "name": "originUrl", + "type": "string" + } + ] + }, + { + "title": "Author", + "name": "author", + "type": "string", + "single": true + }, + { + "title": "Links", + "name": "navigationLinks", + "type": "list" + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/person.json b/.frontmatter/config/taxonomy/contenttypes/person.json new file mode 100644 index 0000000..24960fa --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/person.json @@ -0,0 +1,77 @@ +{ + "$schema": "https://frontmatter.codes/config/taxonomy.contenttypes.schema.json", + "name": "Persons", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "type", + "name": "type", + "type": "string" + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "Weight", + "name": "weight", + "type": "number" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "url", + "name": "url", + "type": "string" + }, + { + "title": "author", + "name": "author", + "type": "string" + }, + { + "title": "author-url", + "name": "author-url", + "type": "string" + }, + { + "title": "origin", + "name": "origin", + "type": "string" + }, + { + "title": "origin-url", + "name": "origin-url", + "type": "string" + } + ] + }, + { + "title": "modules", + "name": "modules", + "type": "choice", + "choices": [ + "mermaid" + ] + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/contenttypes/post.json b/.frontmatter/config/taxonomy/contenttypes/post.json new file mode 100644 index 0000000..023e39e --- /dev/null +++ b/.frontmatter/config/taxonomy/contenttypes/post.json @@ -0,0 +1,69 @@ +{ + "$schema": "https://frontmatter.codes/config/media.contenttypes.schema.json", + "name": "post", + "pageBundle": false, + "fields": [ + { + "title": "title", + "name": "title", + "type": "string" + }, + { + "title": "description", + "name": "description", + "type": "string" + }, + { + "title": "date", + "name": "date", + "type": "datetime" + }, + { + "title": "type", + "name": "type", + "type": "string" + }, + { + "title": "tags", + "name": "tags", + "type": "tags" + }, + { + "title": "draft", + "name": "draft", + "type": "draft" + }, + { + "title": "thumbnail", + "name": "thumbnail", + "type": "fields", + "fields": [ + { + "title": "url", + "name": "url", + "type": "datetime" + }, + { + "title": "author", + "name": "author", + "type": "datetime" + }, + { + "title": "author-url", + "name": "author-url", + "type": "datetime" + }, + { + "title": "origin", + "name": "origin", + "type": "string" + }, + { + "title": "origin-url", + "name": "origin-url", + "type": "datetime" + } + ] + } + ] +} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/docs.json b/.frontmatter/config/taxonomy/docs.json deleted file mode 100644 index f5fb9c6..0000000 --- a/.frontmatter/config/taxonomy/docs.json +++ /dev/null @@ -1,50 +0,0 @@ -{ - "name": "Docs", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Metadata", - "name": "metadata", - "type": "choice", - "choices": [ - "full", - "original", - "none" - ], - "default": "full" - }, - { - "title": "Categories", - "name": "categories", - "type": "choice", - "choices": [ - "Persons", - "Evidence", - "Legal" - ] - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "docs" - } - ] -} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/fieldgroups/.gitkeep b/.frontmatter/config/taxonomy/fieldgroups/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/.frontmatter/config/taxonomy/legal.json b/.frontmatter/config/taxonomy/legal.json deleted file mode 100644 index 176be12..0000000 --- a/.frontmatter/config/taxonomy/legal.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "name": "Legal", - "pageBundle": false, - "fields": [ - { - "title": "title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "description", - "name": "description", - "type": "string" - }, - { - "title": "date", - "name": "date", - "type": "datetime", - "isPublishDate": true - }, - { - "title": "tags", - "name": "tags", - "type": "tags" - }, - { - "title": "type", - "name": "type", - "type": "string", - "single": "true" - }, - { - "title": "draft", - "name": "draft", - "type": "draft" - }, - { - "title": "thumbnail", - "name": "thumbnail", - "type": "fields", - "fields": [ - { - "title": "url", - "name": "url", - "type": "string", - "single": "true" - }, - { - "title": "author", - "name": "author", - "type": "string", - "single": "true" - }, - { - "title": "authorURL", - "name": "authorURL", - "type": "string", - "single": "true" - }, - { - "title": "origin", - "name": "origin", - "type": "string", - "single": "true" - }, - { - "title": "originURL", - "name": "originURL", - "type": "string", - "single": "true" - } - ] - } - ] -} \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/minimal.json b/.frontmatter/config/taxonomy/minimal.json deleted file mode 100644 index 3c730eb..0000000 --- a/.frontmatter/config/taxonomy/minimal.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "Minimal", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "minimal" - } - ] - } \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/page.json b/.frontmatter/config/taxonomy/page.json deleted file mode 100644 index 838d8c4..0000000 --- a/.frontmatter/config/taxonomy/page.json +++ /dev/null @@ -1,114 +0,0 @@ -{ - "name": "page", - "pageBundle": false, - "previewPath": null, - "fields": [ - { - "title": "Title", - "name": "title", - "type": "string", - "single": true - }, - { - "title": "Date", - "name": "date", - "type": "datetime", - "default": "{{now}}", - "isPublishDate": true - }, - { - "title": "Description", - "name": "description", - "type": "string" - }, - { - "title": "Draft", - "name": "draft", - "type": "draft" - }, - { - "title": "Tags", - "name": "tags", - "type": "tags" - }, - { - "title": "Icon", - "name": "icon", - "type": "string", - "single": true - }, - { - "title": "Type", - "name": "type", - "type": "choice", - "choices": [ - "default", - "docs", - "minimal" - ], - "default": "default" - }, - { - "title": "Metadata", - "name": "metadata", - "type": "choice", - "choices": [ - "full", - "original", - "none" - ], - "default": "full" - }, - { - "title": "Download", - "name": "download", - "type": "string", - "single": true - }, - { - "title": "Thumbnail", - "name": "thumbnail", - "type": "fields", - "fields": [ - { - "title": "URL", - "name": "url", - "type": "image" - }, - { - "title": "Author", - "name": "author", - "type": "string", - "single": true - }, - { - "title": "AuthorUrl", - "name": "authorUrl", - "type": "string" - }, - { - "title": "Origin", - "name": "origin", - "type": "string", - "single": true - }, - { - "title": "OriginUrl", - "name": "originUrl", - "type": "string" - } - ] - }, - { - "title": "Author", - "name": "author", - "type": "string", - "single": true - }, - { - "title": "Links", - "name": "navigationLinks", - "type": "list" - } - ] - } \ No newline at end of file diff --git a/.frontmatter/config/taxonomy/person.json b/.frontmatter/config/taxonomy/person.json deleted file mode 100644 index 91fe2c3..0000000 --- a/.frontmatter/config/taxonomy/person.json +++ /dev/null @@ -1,76 +0,0 @@ -{ - "name": "Persons", - "pageBundle": false, - "fields": [ - { - "title": "title", - "name": "title", - "type": "string" - }, - { - "title": "date", - "name": "date", - "type": "datetime" - }, - { - "title": "type", - "name": "type", - "type": "string" - }, - { - "title": "description", - "name": "description", - "type": "string" - }, - { - "title": "tags", - "name": "tags", - "type": "tags" - }, - { - "title": "Weight", - "name": "weight", - "type": "number" - }, - { - "title": "thumbnail", - "name": "thumbnail", - "type": "fields", - "fields": [ - { - "title": "url", - "name": "url", - "type": "string" - }, - { - "title": "author", - "name": "author", - "type": "string" - }, - { - "title": "author-url", - "name": "author-url", - "type": "string" - }, - { - "title": "origin", - "name": "origin", - "type": "string" - }, - { - "title": "origin-url", - "name": "origin-url", - "type": "string" - } - ] - }, - { - "title": "modules", - "name": "modules", - "type": "choice", - "choices": [ - "mermaid" - ] - } - ] -} \ No newline at end of file diff --git a/.frontmatter/database/taxonomyDb.json b/.frontmatter/database/taxonomyDb.json index 711f6ec..8c653fc 100644 --- a/.frontmatter/database/taxonomyDb.json +++ b/.frontmatter/database/taxonomyDb.json @@ -1 +1 @@ -{"taxonomy":{"tags":["Abernathy","Alex","Alex Abernathy","Brian","Brian Abernathy","Chief","County","County Attorney","Denny Dunn","Donnie","Donnie Simmons","Dougs friends","Erica","Erica Simmons","Erica Tyler","Fire","Fire Chief","Ga","Georgia","Jessica McDaniel","Jessica Simmons","Kardun Homes","Lamar","Lamar Co","Lamar County","Matthews","Property","Simmons","Tyler","Tylers","about","accusation","actor","administrator","allegations","attorney","attorneys","audio","back_of_property","blacklabeled","blacklisted","bounty","budget","calendar","capital","chairman","chief","chief_matthews","commisioner","commissioner","communication","complaints","corrupt","counsel","county","county administrator","county attorney","county commissioner","county government","county officials","criticism","crooked","dates","dayton","diagram","difficulties","direct","disclaimer","documents","doug","douglas","emails","entities","events","evidence","expenses","explanation","fake","favoritism","financials","fines","fire chief","greed","haddock","harassment","hate","home","income","info","inheritance","intimidation","involved","jeanie","jeanie haddock","junkyard","justice","justification","lamar","lamar county","lawyer","leads","legal","letters","lies","local","logs","loss","management","map","matthews","mayfield","mdayton","media","mission","negligence","neighborhood","neighbors","news","notices","officials","old Junkyard","oppression","ordinance","otter","otterai","penalties","people","persecution","person","persons","policy","pressure","privacy","private","private_road","profit","proof","propaganda","property","real","realtime","reasoning","records","relation","research","residents","response","revenue","review","rights","road","ryran","scott","scott mayfield","security","setup","simple minded","son","spending","spying","stalkers","stalking","standing","statements","story","stupid answer","stupid question","subdivision","suspicious","tax","taxpayer","terms","threatening behavior","timeline","tips","transcription","transcripts","traylor","truth","us","values","video","video-log","violations","vlog","weekend","whistleblowing","who","why","zoning"],"categories":["Evidence","Legal","Persons","Post","Video"]}} \ No newline at end of file +{"taxonomy":{"tags":["Abernathy","Alex","Alex Abernathy","Brian","Brian Abernathy","Chief","County","County Attorney","Dayton","Denny Dunn","Donnie","Donnie Simmons","Dougs friends","Erica","Erica Simmons","Erica Tyler","Fire","Fire Chief","Ga","Georgia","Jessica McDaniel","Jessica Simmons","Kardun Homes","Lamar","Lamar Co","Lamar County","Matthews","Property","Simmons","Tyler","Tylers","about","accusation","actor","administrator","allegations","attorney","attorneys","audio","back_of_property","blacklabeled","blacklisted","bounty","budget","calendar","capital","chairman","chief","chief_matthews","claims","commisioner","commissioner","communication","complaints","corrupt","counsel","county","county administrator","county attorney","county commissioner","county government","county officials","criticism","crooked","dates","dayton","diagram","difficulties","direct","disclaimer","documents","doug","douglas","emails","entities","estate","events","evidence","expenses","explanation","fake","favoritism","financials","fines","fire chief","greed","haddock","harassment","hate","home","income","info","inheritance","intimidation","involved","jeanie","jeanie haddock","junkyard","justice","justification","lamar","lamar county","lawyer","leads","legal","legitimacy","letters","lies","local","logs","loss","management","map","matthews","mayfield","mdayton","media","message","mission","negligence","neighborhood","neighbors","news","notices","officials","old Junkyard","oppression","ordinance","otter","otterai","penalties","people","persecution","person","persons","policy","pressure","privacy","private","private_road","profit","proof","propaganda","property","real","realtime","reasoning","records","relation","research","residents","response","revenue","review","rights","road","ryran","scott","scott mayfield","security","setup","simple minded","son","spending","spying","stalkers","stalking","standing","statements","story","stupid answer","stupid question","subdivision","suspicious","tax","taxpayer","terms","threatening behavior","timeline","tips","transcription","transcripts","traylor","truth","unsupported","us","values","video","video-log","violations","vlog","weekend","whistleblowing","who","why","zoning"],"categories":["Evidence","Legal","Persons","Post","Video"]}} \ No newline at end of file diff --git a/.frontmatter/ui/external.js b/.frontmatter/ui/external.js deleted file mode 100644 index 642da9b..0000000 --- a/.frontmatter/ui/external.js +++ /dev/null @@ -1,7 +0,0 @@ -import { - enableDevelopmentMode, - registerCardImage, - registerCardFooter, - registerPanelView, - registerCustomField -} from "https://cdn.jsdelivr.net/npm/@frontmatter/extensibility/+esm"; \ No newline at end of file -- cgit v1.2.3