Phase 1 of docs restructuring: move all zettelkasten cards to a temporary docs/zk/ subdirectory while preparing to build a new Diataxis-based documentation structure. - Move all existing markdown files from docs/ to docs/zk/ - Update zk-docs mise task to look in the new location - Add docs/README.md explaining the restructuring plan Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
15 lines
605 B
Bash
Executable file
15 lines
605 B
Bash
Executable file
#!/usr/bin/env bash
|
|
#MISE description="Concatenate all blumeops zettelkasten cards"
|
|
|
|
set -euo pipefail
|
|
|
|
# Blumeops docs now live in the repo itself (symlinked into zk)
|
|
DOCS_DIR="$(cd "$(dirname "$0")/.." && pwd)/docs/zk"
|
|
MAIN_CARD="$DOCS_DIR/1767747119-YCPO.md"
|
|
|
|
# Find all files tagged with blumeops (excluding main card)
|
|
other_cards=$(grep -l '^ - blumeops$' "$DOCS_DIR"/*.md 2>/dev/null | grep -v "$(basename "$MAIN_CARD")" | sort)
|
|
|
|
# Concatenate: main card first, then others
|
|
# Pass through any args to bat (e.g., --style=header --color=never --decorations=always)
|
|
bat "$@" "$MAIN_CARD" $other_cards
|