1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

update snippets

This commit is contained in:
jdhao 2019-08-06 00:16:45 +08:00
parent dd4ef41fa4
commit b4255e204a

View File

@ -6,8 +6,8 @@ snippet head "Markdown header" b
---
title: "$1"
date: `!v strftime("%Y-%m-%d %H:%M:%S%z")`
tags: [$3]
categories: [$4]
tags: [$2]
categories: [$3]
---
$0
endsnippet
@ -15,3 +15,10 @@ endsnippet
snippet more "HTML more tag"
<!--more-->
endsnippet
snippet img "aligned image using HTML tag"
<p align="center">
<img src="${1:URL}">
</p>
$0
endsnippet