Start work on export options
I have started an html export. So far a toc is generated
This commit is contained in:
parent
a9cdb7dfe9
commit
4c891efdce
2 changed files with 91 additions and 33 deletions
36
inc/to-html
Normal file
36
inc/to-html
Normal file
|
@ -0,0 +1,36 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# This file is responsible for generating an html structure of documents
|
||||
# All md files will be converted to html
|
||||
# Everything else will be copied exactly
|
||||
|
||||
# The table of contents will be a nested ul structure
|
||||
# The top level will be the tags, under each tag there will be a list of documents that are tagged with that tag
|
||||
# This will result in doucuments being listed multiple times, once for each tag they are in
|
||||
generate-html-toc(){
|
||||
echo "<nav><ul>"
|
||||
# Loop through each tag
|
||||
listTags --noheader | while read item; do
|
||||
local tag="$(echo "$item" | awk -F ' +' '{print $1}')"
|
||||
local count="$(echo "$item" | awk -F ' +' '{print $2}')"
|
||||
echo "<li>"
|
||||
echo "$tag ($count)"
|
||||
echo "<ul>"
|
||||
echo "SELECT items.filename,items.title
|
||||
FROM items LEFT JOIN links ON items.id = links.itemID
|
||||
LEFT JOIN tags ON links.tagID = tags.id
|
||||
WHERE tags.name = '$(safeSQL "$tag")'
|
||||
GROUP BY items.id;" |
|
||||
sqlite3 "${sqliteFile}" |
|
||||
awk -F '|' '{sub(/\.md/,".html",$1);print "<li><a href=\"" $1 "\">" $2 "</a></li>"}'
|
||||
echo "</ul>"
|
||||
echo "</li>"
|
||||
done
|
||||
echo "</ul></nav>"
|
||||
}
|
||||
|
||||
to-html(){
|
||||
local destination="$1"
|
||||
local toc="$(generate-html-toc)"
|
||||
echo "$toc"
|
||||
}
|
28
kb
28
kb
|
@ -32,6 +32,7 @@ source "inc/tag-management"
|
|||
source "inc/file-management"
|
||||
source "inc/yaml"
|
||||
source "inc/fzf"
|
||||
source "inc/to-html"
|
||||
|
||||
# Utility functions
|
||||
# ##################################################
|
||||
|
@ -304,6 +305,26 @@ indexFolder(){
|
|||
|
||||
}
|
||||
|
||||
convert(){
|
||||
local destination
|
||||
local method
|
||||
|
||||
while [[ $1 = -?* ]]; do
|
||||
case "$1" in
|
||||
--to-html) method="to-html"; destination="html" ;;
|
||||
esac
|
||||
shift
|
||||
done
|
||||
|
||||
[ -n "$1" ] && destination="$1"
|
||||
|
||||
[ -z "$method" ] && die "You must specify a conversion method"
|
||||
[ -z "$destination" ] && die "You must specify a destination"
|
||||
[ -d "$destination" ] || die "$destination must be a directory"
|
||||
|
||||
"$method" "$destination"
|
||||
}
|
||||
|
||||
|
||||
mainScript() {
|
||||
############## Begin Script Here ###################
|
||||
|
@ -319,6 +340,7 @@ mainScript() {
|
|||
|
||||
case "${args[0]}" in
|
||||
add) addFile "${args[@]:1}"; safeExit ;;
|
||||
convert) convert "${args[@]:1}"; safeExit ;;
|
||||
deepsearch) deepSearch "${args[@]:1}"; safeExit ;;
|
||||
del|delete) deleteFile "${args[@]:1}"; safeExit ;;
|
||||
edit) editFile "${args[@]:1}"; safeExit ;;
|
||||
|
@ -383,12 +405,12 @@ usage() {
|
|||
--asset Adds the file as an asset
|
||||
--yaml-header Adds a yaml header (default for markdown files)
|
||||
--yaml-file Adds a yaml file (default for non-markdown files)
|
||||
fuzzy [command] Fuzzy select a file
|
||||
command is what to do with the selected file
|
||||
edit or view
|
||||
fuzzy [default] Fuzzy select a file
|
||||
git [options] Run arbitary git commands on the kb repository
|
||||
del [title] Delete a file
|
||||
index Indexes the folder (usful after a clone etc)
|
||||
convert [options] [dest] Converts the notes into a different format and puts it in dest
|
||||
--to-html Converts to html
|
||||
"
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue