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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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