GitHub - winters27/obsidian-byoc: A free, self-hosted synchronization plugin for Obsidian. Sync your vault across devices using your own cloud storage (S3, Dropbox, pCloud, OneDrive, WebDAV, and more). · GitHub
BYOC is a community-maintained fork of the excellent Remotely Save plugin. This version focuses on providing a clean, completely self-hosted experience while maintaining the robust sync engine created by the original developers
GitHub - callumalpass/tasknotes: Task and time-tracking management with calendar integration for Obsidian
Plugin Obsidian de gestion de temps et de tâches.
Pas testé à ce jour mais à explorer
Shaarli Image Upload Plugin
This plugin for Shaarli allows users to upload an image file when sharing a link. The image is stored in the data/images directory, and a link to the image is automatically prefilled in the text content dialog.
:warning: n'accepte pas les " " (espace) dans les noms de fichiers. À remplacer par le caratère en UTF8 %20
Ne marche pas par défaut sur ce shaarli. J'ai ajouté les lignes suivantes dans le fichier .htaccess dans le dossier data\images :
<IfModule version_module>
<IfVersion >= 2.4>
Require all denied
<FilesMatch "\.(gif|jpe?g|png|webp)$">
Require all granted
</FilesMatch>
</IfVersion>
<IfVersion < 2.4>
Allow from none
Deny from all
<FilesMatch "\.(gif|jpe?g|png|webp)$">
Allow from all
</FilesMatch>
</IfVersion>
</IfModule>
<IfModule !version_module>
# Assume Apache version >= 2.4
Require all denied
<FilesMatch "\.(gif|jpe?g|png|webp)$">
Require all granted
</FilesMatch>
</IfModule>