Template Tags


Template Tags

HelpBurner tags are all start with [% and end with %]. For example, [%PROJECT_NAME%] is a tag that gets replaced with the projects name during publishing.

Basic tags

  • [%PROJECT_NAME%] - inserts the project name.

  • [%TOPIC_TITLE%] - inserts the current topic being published name.

  • [%SUBTITLE%] - inserts the current topics sub-title.

  • [%META_KEYWORDS%] - inserts the topics key words.

  • [%PROJECT_LINK%] - inserts a link to the published project home page.
    Example: <a href="[%PROJECT_LINK%]" title="[%PROJECT_NAME%]">[%PROJECT_NAME%]</a>

  • [%CATEGORY_NAME%] - inserts the folder name the current topic is stored in in your library.

  • [%PAGE_NUMBER%] - inserts the current page number.

  • [%PAGE_TOTAL%] - inserts the total number of pages in this project.

Navigation tags

  • [%CATEGORY_AND_TOPIC_LINKS%] - inserts an un-ordered table of contents list including links to every folder and topic in the project.

  • [%PREVIOUS_TOPIC_LINK%] - the URL to the previous topic. Use this like PROJECT_LINK above. Empty if a previous topic doesn't exist.

  • [%PREVIOUS_TOPIC_NAME%] - the name of the previous topic. Empty if a previous topic doesn't exist.

  • [%NEXT_TOPIC_LINK%] - - the URL to the next topic. Use this like PROJECT_LINK above. Empty if a next topic doesn't exist.

  • [%NEXT_TOPIC_NAME%] - the name of the next topic. Empty if a next topic doesn't exist.

Page tags

  • [%PAGE_TITLE_LINKS%] - inserts an un-ordered list with the titles and links to each title within your topic.

  • [%RELATED_TOPIC_LINKS%] - inserts an un-0rdered list with the titles and links to topics that related to this topic that the author has specified.

  • [%TOPIC_CONTENT%] - inserts the HTML for the topic. This includes images, titles, rich-text and annotation elements.

  • [%INTRODUCTION%] - inserts the introduction (first paragraph) for this topic.