Remove extra semicolon

This commit is contained in:
Vinoth Kannan 2018-10-10 04:29:34 +05:30
parent c877058a24
commit e8e5276f30
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ function addLocalDate(buffer, matches, state) {
token.attrs.push(["data-email-preview", emailPreview]);
token = new state.Token("text", "", 0);
token.content = dateTime.utc().format(config.format);;
token.content = dateTime.utc().format(config.format);
buffer.push(token);
token = new state.Token("span_close", "span", -1);