FIX: stricter matching on local-dates (#7023)

This commit is contained in:
Joffrey JAFFEUX
2019-02-18 22:39:45 +01:00
committed by GitHub
parent 08ae73f868
commit c08b2ddecf

View File

@ -143,7 +143,7 @@ export function setup(helper) {
helper.registerPlugin(md => {
const rule = {
matcher: /\[date(.+?)\]/,
matcher: /\[date(=.+?)\]/,
onMatch: addLocalDate
};