Concordion > Commands >

Content Type

If the document <head> section does not contain content-type metadata, then a <meta> element will be automatically inserted, specifying a content-type with charset set to UTF-8.

Example

When this document is processed:

<html xmlns:concordion="http://www.concordion.org/2007/concordion">
<head>
<title>My Title</title>
</head>
<body />
</html>

, the following output will be produced:

<html xmlns:concordion="http://www.concordion.org/2007/concordion">
<head> _
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>My Title</title>
</head>
<body />
</html>