Add a vibe-coded Jekyll publish plugin
This commit is contained in:
@@ -6,5 +6,6 @@
|
||||
"typewriter-mode",
|
||||
"obsidian-vimrc-support",
|
||||
"tag-wrangler",
|
||||
"maps"
|
||||
"maps",
|
||||
"jekyll-publish"
|
||||
]
|
||||
11
plugins/jekyll-publish-0.1.3/data.json
Normal file
11
plugins/jekyll-publish-0.1.3/data.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"remoteUrl": "",
|
||||
"branch": "main",
|
||||
"postsDir": "_posts",
|
||||
"imagesDir": "assets/img",
|
||||
"defaultImageStrategy": "flat-slug",
|
||||
"presetFrontmatter": [],
|
||||
"commitMessageTemplate": "Publish: {{title}}",
|
||||
"authorName": "Brendan Chen",
|
||||
"authorEmail": "me@bchen.dev"
|
||||
}
|
||||
3290
plugins/jekyll-publish-0.1.3/main.js
Normal file
3290
plugins/jekyll-publish-0.1.3/main.js
Normal file
File diff suppressed because it is too large
Load Diff
9
plugins/jekyll-publish-0.1.3/manifest.json
Normal file
9
plugins/jekyll-publish-0.1.3/manifest.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"id": "jekyll-publish",
|
||||
"name": "Jekyll Publish",
|
||||
"version": "0.1.3",
|
||||
"minAppVersion": "1.5.0",
|
||||
"description": "Publish the active note as a Jekyll post (with images) via git.",
|
||||
"author": "Claude",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
17
plugins/jekyll-publish-0.1.3/styles.css
Normal file
17
plugins/jekyll-publish-0.1.3/styles.css
Normal file
@@ -0,0 +1,17 @@
|
||||
.jekyll-publish-row { display: flex; gap: 8px; margin-bottom: 6px; align-items: center; }
|
||||
.jekyll-publish-row input { flex: 1; }
|
||||
|
||||
/* Read-only document frontmatter fields shown when "Merge document
|
||||
frontmatter" is on — visually muted to signal they cannot be edited here. */
|
||||
.jekyll-publish-row input.jekyll-publish-doc {
|
||||
opacity: 0.65;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
/* Delete button on an editable property row. */
|
||||
.jekyll-publish-del {
|
||||
flex: 0 0 auto;
|
||||
width: 28px;
|
||||
padding: 0;
|
||||
line-height: 1;
|
||||
}
|
||||
Reference in New Issue
Block a user