Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorm5o <m5o@gmx.com>2018-03-13 00:08:44 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-03-13 00:08:44 +0300
commitb9628d064225eb703ea200fe170748c0942b3261 (patch)
tree00bb5b79af58500f0c488add6a302fb198b5299d /docs
parent836de9ccfa201eefb02c97c61a2f3a50e2f2f219 (diff)
Use bugify without custom Jekyll plugin (#25334)
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/browser-bugs.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/4.0/browser-bugs.md b/docs/4.0/browser-bugs.md
index 0fb6f8505e..d6d9115620 100644
--- a/docs/4.0/browser-bugs.md
+++ b/docs/4.0/browser-bugs.md
@@ -28,9 +28,9 @@ See also:
{% for bug in site.data.browser-bugs %}
<tr>
<td>{{ bug.browser }}</td>
- <td>{{ bug.summary | markdownify | bugify }}</td>
- <td>{{ bug.upstream_bug | bugify }}</td>
- <td>{{ bug.origin | bugify }}</td>
+ <td>{{ bug.summary | markdownify }}</td>
+ <td>{% include bugify.html content=bug.upstream_bug %}</td>
+ <td>{% include bugify.html content=bug.origin %}</td>
</tr>
{% endfor %}
</tbody>
@@ -55,9 +55,9 @@ We publicly list these "most wanted" feature requests here, in the hopes of expe
{% for feat in site.data.browser-features %}
<tr>
<td>{{ feat.browser }}</td>
- <td>{{ feat.summary | markdownify | bugify }}</td>
- <td>{{ feat.upstream_bug | bugify }}</td>
- <td>{{ feat.origin | bugify }}</td>
+ <td>{{ feat.summary | markdownify }}</td>
+ <td>{% include bugify.html content=feat.upstream_bug %}</td>
+ <td>{% include bugify.html content=feat.origin %}</td>
</tr>
{% endfor %}
</tbody>