Re: [O] BUG - ox-latex - bib expansion bug and documentation error

2019-07-10 Thread Kyle Meyer
Hi Guilherme, Guilherme Passos writes: > In ox-latex.el, line 1189, org-latex-pdf-process uses '(%bib %b) for > expanding the bibliography. However, this incorrectly expands as > '(BIBFILEib BIBFILE), instead of '(BIBPROCESS BIBFILE) as intended, > defining the process of calling the bibliograph

Re: [O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-10 Thread Thibault Marin
Right, sorry I thought that would be easier. The closest I can get is with a global macro (called `div' in the following): , | (defun org-sitemap-custom-entry-format (entry style project) | "Custom sitemap entry formatting: add date" | (cond ((not (directory-name-p entry)) | (f

Re: [O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-10 Thread Thomas Ingram
Thanks, but adding `#+begin_export html' simply outputs that as well without changing the output "#+begin_export html %s [[file:blog/%s][%s]] #+end_export" Produces #+beginexporthtml
2019-07-10
href="blog/test.html">Test#+endexport On 7/10/19 7:47 PM, Thibault M

Re: [O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-10 Thread Thibault Marin
You may need to wrap the html part in a `#+begin_export html' block or similar. I believe the custom sitemap function should generate org content, not directly HTML. Hope it helps. On 2019-07-10T17:44:01-0400, Thomas Ingram wrote: Hello, I am using ox-publish to build my website. I have

[O] Org publish inserting HTML tags into sitemap-format-entry

2019-07-10 Thread Thomas Ingram
Hello, I am usingĀ  ox-publish to build my website. I have a custom sitemap-formt-entry function that adds post dates and I'm trying to add a div around those dates. Problem is the tags are getting escaped in the resulting HTML. How can I add tags without them being escaped? Below is my :site

[O] BUG - ox-latex - bib expansion bug and documentation error

2019-07-10 Thread Guilherme Passos
Hi, In ox-latex.el, line 1189, org-latex-pdf-process uses '(%bib %b) for expanding the bibliography. However, this incorrectly expands as '(BIBFILEib BIBFILE), instead of '(BIBPROCESS BIBFILE) as intended, defining the process of calling the bibliography. As can be seen in line 3635, the corre