mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 02:01:54 +02: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)
|
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
|
||||||
|
|
|
@ -664,5 +664,24 @@
|
||||||
"Software Developer",
|
"Software Developer",
|
||||||
"Videogame 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" }}
|
{{ $url := .Get "url" }}
|
||||||
{{ $type := .Get "type" }}
|
{{ $type := .Get "type" }}
|
||||||
{{ with resources.GetRemote (printf $url) }}
|
{{ with resources.GetRemote (urls.Parse $url) }}
|
||||||
{{ $codeBlock := printf "```%s\n%s\n```" $type .Content }}
|
{{ $codeBlock := printf "```%s\n%s\n```" $type .Content }}
|
||||||
{{ $codeBlock | markdownify }}
|
{{ $codeBlock | markdownify }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{{ $url := .Get "url"}}
|
{{ $url := .Get "url"}}
|
||||||
{{ with resources.GetRemote (printf $url) }}
|
{{ with resources.GetRemote (urls.Parse $url) }}
|
||||||
{{ .Content | markdownify }}
|
{{ .Content | markdownify }}
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ errorf "Mardown Importer Shortcode - Unable to get remote resource" . }}
|
{{ errorf "Mardown Importer Shortcode - Unable to get remote resource" . }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue