diff options
author | elioat <elioat@tilde.institute> | 2022-12-07 18:44:15 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2022-12-07 18:44:15 -0500 |
commit | 117f7f7c053269d2b6b24e55ab057aa7777c3d9f (patch) | |
tree | edecfcdac53da00909234fdbbc501648745f9f30 | |
parent | 93aad9aee750e22817d2417f90e58bd82b454278 (diff) | |
download | december-2022-117f7f7c053269d2b6b24e55ab057aa7777c3d9f.tar.gz |
sketching
-rw-r--r-- | src/catalogue.lil | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/src/catalogue.lil b/src/catalogue.lil index 2690bcb..0a8be1a 100644 --- a/src/catalogue.lil +++ b/src/catalogue.lil @@ -23,4 +23,17 @@ # input data. Input data stored as CSV between sessions # NOTE: if input data is stored as CSV is becomes trivial to pipe in and out -# of SQLite in the future...if that'd be desirable \ No newline at end of file +# of SQLite in the future...if that'd be desirable + +# NOTE: I'm using just 1 table so that this can be easily exported as CSV... +# if it weren't for that requirement, I'd have multiple tables + +catalogue.entry_type:"folder","folder","note","link","link" +catalogue.parent:0,0,0,0,0 # QUESTION: how to reference other entries by IDs +catalogue.title:"read","to read","what an idea","Oatmeal","sans" +catalogue.body:0,0,"what if I made a lil cli",0,0 +catalogue.reference:0,0,0,"https://eli.li","https://smallandnearlysilent.com" +catalogue.created_date:"2022-12-07","2022-12-07","2022-12-07","2022-12-07","2022-12-07" +catalogue:table catalogue + +show[catalogue] \ No newline at end of file |