From 9d0c3e1551b1f92935efb02a15df4f6e54b537fd Mon Sep 17 00:00:00 2001 From: Philip Chimento Date: Wed, 3 Feb 2016 10:11:33 -0800 Subject: devdocs: Distinguish between versioning notes Previously, Since:, Deprecated:, and Stability: annotations were all given the same CSS class. In order to style them differently, we give them different classes. --- giscanner/doctemplates/devdocs/Gjs/_doc.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/giscanner/doctemplates/devdocs/Gjs/_doc.tmpl b/giscanner/doctemplates/devdocs/Gjs/_doc.tmpl index b8a2d7a6..d645df17 100644 --- a/giscanner/doctemplates/devdocs/Gjs/_doc.tmpl +++ b/giscanner/doctemplates/devdocs/Gjs/_doc.tmpl @@ -1,19 +1,19 @@ <%def name="format_documentation(node)"> % if node.version: -

+

New in version ${node.version}. ${formatter.format_inline(node, node.version_doc)}

% endif % if node.deprecated: -

+

Deprecated since ${node.deprecated}. ${formatter.format_inline(node, node.deprecated_doc)}

% endif % if node.stability: ## Not sure what this looks like in the wild -

+

Stability: ${node.stability}. ${formatter.format_inline(node, node.stability_doc)}

-- cgit v1.2.1