回答編集履歴
3
修正
test
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
```HTML
|
2
2
|
|
3
|
+
{% for list in lists %}
|
4
|
+
|
3
|
-
{% for post in list
|
5
|
+
{% for post in list %}
|
4
6
|
|
5
7
|
{{post|safe}}
|
6
8
|
|
7
9
|
{% endfor %}
|
8
10
|
|
11
|
+
{% endfor %}
|
12
|
+
|
9
13
|
```サイトのHTMLをそのままいれる
|
2
修正
test
CHANGED
@@ -2,20 +2,8 @@
|
|
2
2
|
|
3
3
|
{% for post in lists %}
|
4
4
|
|
5
|
-
<p><h1 class="firstHeading" id="firstHeading" lang="ja">{{post.0}}</h1></p>
|
6
|
-
|
7
|
-
<p><h2 id="mw-toc-heading">{{post.1}}</h2></p>
|
8
|
-
|
9
|
-
|
5
|
+
{{post|safe}}
|
10
|
-
|
11
|
-
<p><h2>{{post.3}}</h2></p>
|
12
6
|
|
13
7
|
{% endfor %}
|
14
8
|
|
15
|
-
```
|
9
|
+
```サイトのHTMLをそのままいれる
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
あと、コードは、自分の回答↑のように、
|
20
|
-
|
21
|
-
[コードの挿入](https://teratail.com/help#about-markdown)で書きましょう。
|
1
修正
test
CHANGED
@@ -16,6 +16,6 @@
|
|
16
16
|
|
17
17
|
|
18
18
|
|
19
|
-
あと、コードは、
|
19
|
+
あと、コードは、自分の回答↑のように、
|
20
20
|
|
21
21
|
[コードの挿入](https://teratail.com/help#about-markdown)で書きましょう。
|