Trending
Study links sugar-sweetened beverages, fruit juice consumption to high blood pressure is trending now The Silent Pandemic Killing 3 People Every Minute is trending now Lassa fever: 237 dead as fatality rate rises to 23.7% is trending now Black holes older than the Big Bang could explain dark matter is trending now Sudan: Heavy Meteor Showers to Appear in the Atmosphere Tuesday Evening for Three Days is trending now Carabao Cup second-round draw: Chelsea vs Luton, Tottenham vs Charlton, Newcastle vs West… is trending now Donald Trump says replacing Gianni Infantino would be a ‘terrible mistake’ is trending now 'Enjoy it' - Ronald Araujo reveals Luis Suarez’s advice after joining Liverpool on loan is trending now Despite defeat to Cameroon, World Cup remains our target - Super Falcons' Christy Ucheibe is trending now BBNaija S11: 16 housemates up for possible eviction in week three is trending now From tears to thanksgiving, Actress Mo Bimpe celebrates triplets ahead of grand thanksgiv… is trending now Apply Now: Jonathan Larson Grant Program (US) is trending now Study links sugar-sweetened beverages, fruit juice consumption to high blood pressure is trending now The Silent Pandemic Killing 3 People Every Minute is trending now Lassa fever: 237 dead as fatality rate rises to 23.7% is trending now Black holes older than the Big Bang could explain dark matter is trending now Sudan: Heavy Meteor Showers to Appear in the Atmosphere Tuesday Evening for Three Days is trending now Carabao Cup second-round draw: Chelsea vs Luton, Tottenham vs Charlton, Newcastle vs West… is trending now Donald Trump says replacing Gianni Infantino would be a ‘terrible mistake’ is trending now 'Enjoy it' - Ronald Araujo reveals Luis Suarez’s advice after joining Liverpool on loan is trending now Despite defeat to Cameroon, World Cup remains our target - Super Falcons' Christy Ucheibe is trending now BBNaija S11: 16 housemates up for possible eviction in week three is trending now From tears to thanksgiving, Actress Mo Bimpe celebrates triplets ahead of grand thanksgiv… is trending now Apply Now: Jonathan Larson Grant Program (US) is trending now
Dressmaking

Markdown Front Matter For Metadata

Markdown Front Matter For Metadata

Continuing the story of replacing Windows Live Writer with some custom tools... In addition to image uploads and code formatting, I also needed the ability to: Specify the date and time for the post to turn publicly visible (future posting). Save the database-generated ID for a post so the post can be updated in the future. Save the server-generated URL for a post to easily preview the post. All of this metadata was information I wanted to track for each markdown file, but I didn't want to keep the metadata outside of the markdown file in a separate store, because synchronization only adds complexity. I was looking for a way to embed metadata into the markdown file itself, but the CommonMark specification doesn't provide for metadata. Fortunately, I found a number of tools and libraries support YAML front matter in markdown. Front matter is easy to write, easy to parse, and a good solution if you need to keep metadata associated with your markdown with you markdown. The picture below shows a post after publication, so the tools have added an ID and a URL. I add the date to publish and the title.

View original source →

Related