]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - doc/md/Datastore-hacks.md
Generate HTML documentation using MkDocs (WIP)
[github/shaarli/Shaarli.git] / doc / md / Datastore-hacks.md
similarity index 98%
rename from doc/Datastore-hacks.md
rename to doc/md/Datastore-hacks.md
index ef6f6d505c4a44f0574f96f4aeb4dba20b48856e..78baa005eabef2d0b883cc6dc097820ef484b69e 100644 (file)
@@ -1,5 +1,5 @@
-#Datastore hacks
 ### Decode datastore content
+
 To display the array representing the data saved in `data/datastore.php`, use the following snippet:
 
 ```php
@@ -18,6 +18,7 @@ php -r 'print(json_encode(unserialize(gzinflate(base64_decode(preg_replace("!.*/
 ```
 
 ### Changing the timestamp for a link
+
 * Look for `<input type="hidden" name="lf_linkdate" value="{$link.linkdate}">` in `tpl/editlink.tpl` (line 14)
 * Replace `type="hidden"` with `type="text"` from this line
 * A new date/time field becomes available in the edit/new link dialog.