mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-01-22 22:45:42 -06:00
Merge branch 'dev' into 1474-long-tocs-not-shown-fully
This commit is contained in:
commit
2245ef7ac5
4 changed files with 23 additions and 4 deletions
|
@ -14,7 +14,7 @@ body.zen-mode-enable {
|
|||
}
|
||||
}
|
||||
|
||||
/*! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com */
|
||||
/*! tailwindcss v3.4.4 | MIT License | https://tailwindcss.com */
|
||||
|
||||
/*
|
||||
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
||||
|
|
|
@ -664,5 +664,24 @@
|
|||
"Software Developer",
|
||||
"Videogame Developer"
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "MEM v ENNBEE",
|
||||
"url": "https://memv.ennbee.uk/",
|
||||
"source": "https://github.com/ennnbeee/ennnbeee.github.io",
|
||||
"tags": [
|
||||
"Technology Blog",
|
||||
"Personal site"
|
||||
]
|
||||
},
|
||||
{
|
||||
"title": "Joshua Blais",
|
||||
"url": "https://joshblais.com/",
|
||||
"source": "n/a",
|
||||
"tags": [
|
||||
"Personal Site",
|
||||
"Author",
|
||||
"Digital Garden"
|
||||
]
|
||||
}
|
||||
]
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{{ $url := .Get "url" }}
|
||||
{{ $type := .Get "type" }}
|
||||
{{ with resources.GetRemote (printf $url) }}
|
||||
{{ with resources.GetRemote (urls.Parse $url) }}
|
||||
{{ $codeBlock := printf "```%s\n%s\n```" $type .Content }}
|
||||
{{ $codeBlock | markdownify }}
|
||||
{{ else }}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{{ $url := .Get "url"}}
|
||||
{{ with resources.GetRemote (printf $url) }}
|
||||
{{ with resources.GetRemote (urls.Parse $url) }}
|
||||
{{ .Content | markdownify }}
|
||||
{{ else }}
|
||||
{{ errorf "Mardown Importer Shortcode - Unable to get remote resource" . }}
|
||||
|
|
Loading…
Reference in a new issue