質問編集履歴

1

書式の改善

2021/07/03 12:14

投稿

h-sorimachi
h-sorimachi

スコア7

test CHANGED
File without changes
test CHANGED
@@ -7,6 +7,8 @@
7
7
  例えばヘッダに含まれる以下のソースがテキストとして解釈されております。
8
8
 
9
9
  ```php
10
+
11
+ <head>
10
12
 
11
13
  {% block head %}
12
14
 
@@ -48,13 +50,17 @@
48
50
 
49
51
  {{ assets.js() }}
50
52
 
53
+ </head>
54
+
51
55
  ```
52
56
 
53
57
  ↓↓↓
54
58
 
55
59
  ```
56
60
 
57
- <link href="/user/plugins/markdown-notices/assets/notices.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/form/assets/form-styles.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/simplesearch/css/simplesearch.css" type="text/css" rel="stylesheet"> <link href="/user/plugins/login/css/login.css" type="text/css" rel="stylesheet"> <link href="/user/themes/future/assets/css/main.css" type="text/css" rel="stylesheet"> <script src="/system/assets/jquery/jquery-3.x.min.js"></script> <script src="/user/themes/future/assets/js/skel.min.js"></script> <script src="/user/themes/future/assets/js/util.js"></script> <script src="/user/themes/future/assets/js/main.js"></script>
61
+ <body>
62
+
63
+ <link href="/user/themes/future/assets/css/main.css" type="text/css" rel="stylesheet"> <script src="/system/assets/jquery/jquery-3.x.min.js"></script> <script src="/user/themes/future/assets/js/skel.min.js"></script> <script src="/user/themes/future/assets/js/util.js"></script> <script src="/user/themes/future/assets/js/main.js"></script>
58
64
 
59
65
  ```
60
66