@@ -71,7 +71,7 @@
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."¶
- This Internet-Draft will expire on March 2, 2024.¶
+ This Internet-Draft will expire on March 25, 2024.
¶
diff --git a/xml2rfc/writers/html.py b/xml2rfc/writers/html.py
index f9f9bff9..a32cae08 100644
--- a/xml2rfc/writers/html.py
+++ b/xml2rfc/writers/html.py
@@ -2,6 +2,7 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, print_function, division
+import datetime
import lxml
import os
import re
@@ -473,6 +474,11 @@ def render_rfc(self, h, x):
generator = "%s %s" % (xml2rfc.NAME, xml2rfc.__version__)
add.meta(head, None, name='generator', content=generator)
+
+ # o created - date created in UTC timezone using ISO format
+ current_time = datetime.datetime.now(datetime.timezone.utc)
+ created = current_time.isoformat(timespec="minutes").replace('+00:00', 'Z')
+ add.meta(head, None, name='created', content=created)
# o keywords - comma-separated s from the XML source