From 7240f31824b94d22ec382854b7b3dc47100374c2 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Tue, 6 Nov 2018 16:05:12 +0200 Subject: [PATCH] chore(docs): fix rendering of methods' `this` type --- docs/config/templates/ngdoc/lib/methods.template.html | 2 +- docs/config/templates/ngdoc/lib/this.template.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/config/templates/ngdoc/lib/methods.template.html b/docs/config/templates/ngdoc/lib/methods.template.html index 9f449f97c..ea9218a56 100644 --- a/docs/config/templates/ngdoc/lib/methods.template.html +++ b/docs/config/templates/ngdoc/lib/methods.template.html @@ -17,7 +17,7 @@ {% endif %} {% if method.this %} -

Method's {% code %}this{% endcode %}

+

Method's `this`

{$ method.this | marked $} {% endif %} diff --git a/docs/config/templates/ngdoc/lib/this.template.html b/docs/config/templates/ngdoc/lib/this.template.html index 24881972b..1829c1b37 100644 --- a/docs/config/templates/ngdoc/lib/this.template.html +++ b/docs/config/templates/ngdoc/lib/this.template.html @@ -1,4 +1,4 @@ {% if doc.this %} -

Method's {% code %}this{% endcode %}

+

Method's `this`

{$ doc.this | marked $} -{% endif %} \ No newline at end of file +{% endif %}