THIS REPOSITORY IS ARCHIVED. I DON'T PLAN TO UPDATE IT.
PLEASE, USE THE OBSIDIAN PLUGIN INSTEAD OF THIS CRAP.
The script can be use :
- Directly in Obsidian, using Obsidian Shell Commands (see Obsidian shell configuration )
- In a terminal.
The supported system are :
- macOS, Linux and Windows
- IOS (with Pyto and/or a-shell with Working Copy)
At the first run, you will be asked to configure some key and specific path.
- Vault : Use the file dialog to choose your vault folder.
- Publish repository folder : As vault path, use the file dialog.
- share : You can change the
share
key. By default, it'sshare
- Index key: Support for citation of [[../Template - The blog/customization and css#folder-note|pagination index pages]]. By default, it uses
(i)
- Default blog folder: By default, the notes will be in
docs/notes
but you can change that, or use/
for root.
Global options :
--git
: No commit and push to git ;--mobile
: Use mobile shortcuts instead of--git
--meta
: Update frontmatter of source files--keep
: Don't delete files in blog folder--shell
: Remove Rich printing
Commands and specific options :
- config : (it will ignore
--use configuration_name
)--new configuration_name
: Create a specific configuration for some files
- all : Share all vault
--force
: Force updating (ignore the difference between the source and blog file)--vault
: Share all vault file, ignoring the share state.
file [file]
: Share only one file
usage: __main__.py [-h] [--mobile | --git] [--meta] [--keep] [--use configuration_name] {config,all,file} ...
positional arguments:
{config,all,file}
config Configure the script : Add or edit your vault and blog absolute path, change some keys.
all Publish multiple files
file Publish only one file
options:
-h, --help show this help message and exit
--mobile, --shortcuts
Use mobile shortcuts, without push
--git, --g, --G No commit and no push to git
--meta, --m, --M Update the frontmatter of the source file, adding the note blog's link
--keep, --k, --K Keep deleted file from vault and removed shared file
--use configuration_name, --config configuration_name
Use a different config from default
The commands order is :
obs2mk (global_options) [all|config|file FILEPATH] (specific_options)
Where :
- Global and specific options are optional
all
,config
andfile
1 are required You can use the command without argument withobs2mk
to share everyshare: true
file in your vault.
It will :
- Update the
share
state in original file - Convert one file, regardless of what is the
share
state.
You can share multiple documents at once with scanning your Vault, looking for the share: true
. It will convert automatically these files.
Only file with modification since the last sharing will be updated.
You can :
- Share entirely your vault (that's ignore the
share
state) with :obs2mk all --vault
- Ignore the difference between the source file and the blog's file with :
obs2mk all --force
Also, you can combine the two options.
You can use and create multiple configuration files. This allows to have multiple site based on one vault, or different vault accross one site...
- To create a new configuration file :
obs2mk config --new configuration_name
- To use a configuration use :
--use configuration_name
For example :obs2mk --use configuration_name
See [[configuration template]] for more information about the configuration file.
Footnotes
-
For
file
you need to add the filepath of the file you want to share :obs2mk (global_option) file "filepath" (specific_options)
↩