diff options
author | elioat <elioat@tilde.institute> | 2022-12-16 13:38:14 -0500 |
---|---|---|
committer | elioat <elioat@tilde.institute> | 2022-12-16 13:38:14 -0500 |
commit | e79c2f0c9e490cb3b8cac82e7bb1dc319b7d20a2 (patch) | |
tree | b2781f6b723e88e92c89f1c0f092556d88c40311 /src | |
parent | a96a2b1430ab591f1913df8f1dd56a6b9807caa7 (diff) | |
download | december-2022-e79c2f0c9e490cb3b8cac82e7bb1dc319b7d20a2.tar.gz |
*
Diffstat (limited to 'src')
-rw-r--r-- | src/blogthing/sketch.md | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/blogthing/sketch.md b/src/blogthing/sketch.md index 10800ec..c4eb353 100644 --- a/src/blogthing/sketch.md +++ b/src/blogthing/sketch.md @@ -1,10 +1,10 @@ pass arguments to determine the type of post -- (none), for normal blog post, with title -- `note`, for a post without a title +- (none), for normal blog post with a title +- `note`, for a post without a title - `image`, for an image post - `reply`, for a post replying to something with a url -- `like`, for a little like post (don't really make these any more) +- `like`, for a little like post (don't really make these any more) ```plaintext ./blogthing @@ -12,4 +12,11 @@ pass arguments to determine the type of post ./blogthing image ./blogthing reply <<some url>> ./blogthing like <<some url>> +``` + +Question -- what about being able to pass the an image, or directory of images to the image flag to automatically build them, maybe pre-process the image before upload? + +``` +./blogthing image dither ~/path/to/an/image.png +./blogthing image ~/path/to/an/image.png ``` \ No newline at end of file |