This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
tty2newsml/newsml.mustache
2014-11-10 16:40:41 +01:00

36 lines
1.3 KiB
Plaintext

<?xml version="1.0" encoding="utf-8"?>
<newsMessage xmlns="http://iptc.org/std/nar/2006-10-01/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:x="http://www.w3.org/1999/xhtml">
<header>
<sent></sent>
<sender>{{ header.source_id }}</sender>
<priority>{{ header.priority }}</priority>
</header>
<itemSet>
<newsItem>
<itemMeta>
<itemClass qcode="icls:text" />
</itemMeta>
<contentMeta>
<altId type="idType:USN">{{ header.message_no }}</altId>
<subject qcode="subj:{{ header.category }}" />
<slugline separator="-">{{ header.keywords }}</slugline>
<headline></headline>
</contentMeta>
<contentSet>
<inlineXML contenttype="application/xhtml+html" wordcount="{{ header.word_count }}">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title />
</head>
<body>
<p>
{{ text }}
</p>
</body>
</html>
</inlineXML>
</contentSet>
</newsItem>
</itemSet>
</newsMessage>