diff options
| author | Baitinq <[email protected]> | 2022-08-03 18:46:05 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-08-03 18:46:05 +0200 |
| commit | 9e4af527b0e031be99a8b6726d2ee3ac074e9a61 (patch) | |
| tree | a1760f40dd7bb0c48b58317d74f30a710728dad6 /themes/researcher/layouts/shortcodes | |
| parent | Change markdown generator to showdown (diff) | |
| download | baitinq.ml-9e4af527b0e031be99a8b6726d2ee3ac074e9a61.tar.gz baitinq.ml-9e4af527b0e031be99a8b6726d2ee3ac074e9a61.tar.bz2 baitinq.ml-9e4af527b0e031be99a8b6726d2ee3ac074e9a61.zip | |
Add projectFetch shortcode
Diffstat (limited to 'themes/researcher/layouts/shortcodes')
| -rw-r--r-- | themes/researcher/layouts/shortcodes/projectFetch.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/themes/researcher/layouts/shortcodes/projectFetch.html b/themes/researcher/layouts/shortcodes/projectFetch.html new file mode 100644 index 0000000..e943994 --- /dev/null +++ b/themes/researcher/layouts/shortcodes/projectFetch.html @@ -0,0 +1,17 @@ +<div id="fetched-markdown"></div> + +<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/showdown.min.js" type="text/javascript"></script> + +<script> + +fetch({{ .Get "readmeURL" }}).then((response) => response.text()).then((data) => { + console.log(data); + const converter = new showdown.Converter(); + const html = converter.makeHtml(data); + document.getElementById('fetched-markdown').innerHTML = html; +}); +</script> + +----- + +This information was fetched from [{{ .Get "projectName" }}'s]({{ .Get "projectURL" }}) [README]({{ .Get "readmeURL" }}). |