Markdown : Add Gitea renderer.
This commit is contained in:
parent
fe3e84babf
commit
40b97132a7
15
.config/bash/module/Markdown.sh
Normal file
15
.config/bash/module/Markdown.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
# Render markdown in browser using Gitea API. Because I want consistency with Gitea web render.
|
||||
# Works only inside LAN.
|
||||
# Usage: markdown_render <FILE.md>
|
||||
function markdown_render() {
|
||||
local IFS=$'\n'
|
||||
local file="${1}"
|
||||
local render="markdown_render.html"
|
||||
|
||||
if [[ "${file}" = "" ]]; then
|
||||
help markdown_render
|
||||
return 2
|
||||
fi
|
||||
|
||||
curl -X POST https://git.voronind.com/markdown -d "$(cat ${file})" > "${render}" && o "${render}" && sleep 2 && rm "${render}"
|
||||
}
|
|
@ -220,6 +220,12 @@ Command|Description
|
|||
`la [DIRS]`|List all files in dirs, incl. hidden files. Current dir by default.
|
||||
`lla [DIRS]`|List all files in dirs, incl. hidden files, sorted by mtime. Current dir by default.
|
||||
|
||||
## Markdown.
|
||||
|
||||
Command|Description
|
||||
---|---
|
||||
`markdown_render <FILE.md>`|Render markdown in browser using Gitea API. Because I want consistency with Gitea web render. Works only inside LAN.
|
||||
|
||||
## Name.
|
||||
|
||||
Command|Description
|
||||
|
|
Reference in a new issue