Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/recipe-fiddle.git
<xsl:stylesheet version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<!-- If true, generate the table of contents. -->
<xsl:param name="recipe-toc" select="true()" />

<!-- If true, generate the index of ingredients (and categories). -->
<xsl:param name="ingredient-index" select="true()" />

<!-- If true, generate the copyright page. -->
<xsl:param name="book-copyright" select="true()" />

<!-- If true, include a front cover image. -->
<xsl:param name="book-front-cover" select="true()" />

<!-- If true, the page number appears on full-page photo pages. -->
<xsl:param name="page-photo-footer" select="false()" />

<!-- If false, the will use a print layout. -->
<xsl:param name="ebook" select="true()" />

<!-- Specifies what file to include to control the book's look. -->
<xsl:param name="book-theme" select="'svedish'" />

<!-- Specifies what file to include to control the book's look. -->
<xsl:param name="book-author" select="''" />

<!-- Specifies what file to include to control the book's colours. -->
<xsl:param name="book-colour" select="'reddit'" />

<!-- Specifies the text for the Table of Contents. -->
<xsl:param name="recipe-toc-text" select="'Contents'" />

<!-- Users pay to remove the preview text. -->
<xsl:param name="preview" select="true()" />

</xsl:stylesheet>