fletcher / MultiMarkdown

Expanded perl version of John Gruber's original Markdown --- No longer under active development since MMD 3
http://fletcherpenney.net/multimarkdown/
1.06k stars 530 forks source link

Exclude some metadata in html head #54

Closed feekApp closed 8 years ago

feekApp commented 8 years ago

Hi,

I was wondering if there is a way to exclude some metadata items in the final rendered HTML.

For example I use the metadata transcludebase in order to incorporate my specific headers and footers.

So

transcludebase:   /Users/MyName/Dropbox/Sync/mmdStyles

renders:

<head>
    ...
    <meta name="transcludebase" content="/Users/MyName/Dropbox/Sync/mmdStyles"/>
    ...
</head>

But I do not want this metadata gets in the header. Is there a way to prevent this (not relevant information=> local and personal information)?

For example via

multimarkdown --exclude-in-header='transcludebase,other-meta'  changelog.md

regards, Feek

fletcher commented 8 years ago

This project has not been under active develop for many years. Perhaps you were looking for this instead:

https://github.com/fletcher/MultiMarkdown-5

(Short answer is there is not a feature like that, but the source can be modified to exclude additional "standard" metadata keys.)