Add a Pretty URL in FTML - Fluid Topics - Latest

Empower Metadata with Fluid Topics

Category
Technical Notes
Audience
public
Version
Latest

The ft:prettyUrl metadata element is available for FTML maps and FTML topics.

The following lines show how to assign a value for the ft:prettyUrl metadata key to an ftmap and to an FTML topic node:

<?xml version="1.0" encoding="UTF-8"?> 
<ft:map ft:editorialType="book" ft:lang="en-US" ft:originId="42" ft:title="Installation Guide" xmlns:ft="http://ref.fluidtopics.com/v3/ft#" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> 
  <ft:metas> 
    <ft:meta key="ft:prettyUrl" type="string">Product/Oleandor/Installation_Guide</ft:meta> 
  </ft:metas> 
  <ft:toc> 
    <ft:node ft:originId="711rbe" ft:title="Prerequisites" href="prerequisites.html" type="topic"> 
    <ft:metas> 
      <ft:meta key="ft:prettyUrl">Product/Oleandor/Installation_Prerequisites</ft:meta> 
      <ft:meta key="audience">beginner</ft:meta> 
    </ft:metas> 
    </ft:node> 
    ... 
  </ft:toc> 
</ft:map>