I am using orgmode to produce html for the Hugo static web site generator. Hugo requires yaml at the top of the html file for configuration. Previously (8.3beta) this worked by putting the yaml inside BEGIN_HTML blocks., but it does not work with version 8.3.2 org-mode Version 8.3.2 I am unable to get orgmode to pass literal "html" on export. Input file: ----------------------------------------------- #+STARTUP: showall expand #+options: toc:nil #+BEGIN_HTML --- date: "2014-07-28" title: "Testeight" type: "page" menu: "docs" weight: 3 --- #+END_HTML * Hello This is the first line html output file: ----------------------------------------------
— date: "2014-07-28" title: "Testeight" type: "page" menu: "docs" weight: 3 —
etc. In orgmode 8.3beta this worked. I got the html export file below --- date: "2014-07-28" title: "Testeight" type: "page" menu: "docs" weight: 3 ---This is the first line