View raw Markdown
type: codesystemcodesystem: guide-page-generation

Guide Page Generation

Concepts

CodeDisplayDefinition
htmlHTMLPage is proper xhtml with no templating. Will be brought across unchanged for standard post-processing.
markdownMarkdownPage is markdown with templating. Will use the template to create a file that imports the markdown file prior to post-processing.
xmlXMLPage is xml with templating. Will use the template to create a file that imports the source file and run the nominated XSLT transform (see parameters) if present prior to post-processing.
generatedGeneratedPage will be generated by the publication process - no source to bring across.

CodeSystem XML

<?xml version="1.0" encoding="UTF-8"?>

<CodeSystem xmlns="http://hl7.org/fhir">
  <id value="guide-page-generation"/>
  <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg">
    <valueCode value="fhir"/>
  </extension>
  <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status">
    <valueCode value="normative"/>
  </extension>
  <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm">
    <valueInteger value="1"/>
  </extension>
  <url value="http://hl7.org/fhir/guide-page-generation"/>
  <identifier>
    <system value="urn:ietf:rfc:3986"/>
    <value value="urn:oid:2.16.840.1.113883.4.642.4.999"/>
  </identifier>
  <version value="6.0.0"/>
  <name value="GuidePageGeneration"/>
  <title value="Guide Page Generation"/>
  <status value="active"/>
  <experimental value="false"/>
  <date value="2021-01-05T10:01:24+11:00"/>
  <publisher value="HL7 (FHIR Project)"/>
  <contact>
    <telecom>
      <system value="url"/>
      <value value="http://hl7.org/fhir"/>
    </telecom>
    <telecom>
      <system value="email"/>
      <value value="fhir@lists.hl7.org"/>
    </telecom>
  </contact>
  <description value="A code that indicates how the page is generated."/>
  <caseSensitive value="true"/>
  <valueSet value="http://hl7.org/fhir/ValueSet/guide-page-generation"/>
  <content value="complete"/>
  <concept>
    <code value="html"/>
    <display value="HTML"/>
    <definition value="Page is proper xhtml with no templating.  Will be brought across unchanged for standard post-processing."/>
  </concept>
  <concept>
    <code value="markdown"/>
    <display value="Markdown"/>
    <definition value="Page is markdown with templating.  Will use the template to create a file that imports the markdown file prior to post-processing."/>
  </concept>
  <concept>
    <code value="xml"/>
    <display value="XML"/>
    <definition value="Page is xml with templating.  Will use the template to create a file that imports the source file and run the nominated XSLT transform (see parameters) if present prior to post-processing."/>
  </concept>
  <concept>
    <code value="generated"/>
    <display value="Generated"/>
    <definition value="Page will be generated by the publication process - no source to bring across."/>
  </concept>
</CodeSystem>