1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00
jdhao-nvim-config/my_snippets/markdown.snippets
2019-04-27 00:16:43 +08:00

18 lines
252 B
Plaintext

snippet kbd "HTML kbd tag"
<kbd>${1:KEY}</kbd>$0
endsnippet
snippet head "Markdown header" b
---
title: "$1"
date: `!v strftime("%Y-%m-%d %H:%M:%S%z")`
tags: [$3]
categories: [$4]
---
$0
endsnippet
snippet more "HTML more tag"
<!--more-->
endsnippet