Greg Turnquist 13 лет назад
Родитель
Сommit
972848e4c8
1 измененных файлов: 20 добавлений и 7 удалений
  1. 20
    7
      README.md

+ 20
- 7
README.md Просмотреть файл

@@ -73,8 +73,9 @@ In a project directory of your choosing, create the following subdirectory struc
73 73
             └── java
74 74
                 └── hello
75 75
 
76
-
77
-<span data-type="gradle">
76
+<script type="text/html">
77
+    <div class="gradle">
78
+</script>
78 79
 
79 80
 ### Create a Gradle build file
80 81
 Below is the [initial Gradle build file](https://github.com/spring-guides/gs-rest-service/blob/master/initial/build.gradle). But you can also use Maven. The pom.xml file is included [right here](https://github.com/spring-guides/gs-rest-service/blob/master/initial/pom.xml). If you are using [Spring Tool Suite (STS)][gs-sts], you can import the guide directly.
@@ -113,17 +114,29 @@ task wrapper(type: Wrapper) {
113 114
 }
114 115
 ```
115 116
 
116
-</span>
117
+<script type="text/html">
118
+    </div>
119
+</script>
120
+
121
+
117 122
 
118
-<span class="maven">
123
+<script type="text/html">
124
+    <div class="maven">
125
+</script>
119 126
 ### Maven stuff
120 127
 This is Maven stuff
121
-</span>
128
+<script type="text/html">
129
+    </div>
130
+</script>
122 131
 
123
-<span class="sts">
132
+<script type="text/html">
133
+    <div class="sts">
134
+</script>
124 135
 ### STS stuff
125 136
 This is STS stuff
126
-</span>
137
+<script type="text/html">
138
+    </div>
139
+</script>
127 140
 
128 141
 [gs-sts]: /guides/gs/sts    
129 142