Skip to content

Commit 563045f

Browse files
docs: refactor in markdown
1 parent 44a5a1e commit 563045f

File tree

6 files changed

+2560
-290
lines changed

6 files changed

+2560
-290
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -419,6 +419,9 @@
419419
</configuration>
420420
</execution>
421421
</executions>
422+
<configuration>
423+
<escapeString>\</escapeString>
424+
</configuration>
422425
</plugin>
423426
<plugin>
424427
<groupId>org.apache.maven.plugins</groupId>

src/site/markdown/configuration.md

Lines changed: 1283 additions & 133 deletions
Large diffs are not rendered by default.

src/site/markdown/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ The configuration XML file contains settings for the core of the MyBatis system,
3939
<environment id="development">
4040
<transactionManager type="JDBC"/>
4141
<dataSource type="POOLED">
42-
<property name="driver" value="${driver}"/>
43-
<property name="url" value="${url}"/>
44-
<property name="username" value="${username}"/>
45-
<property name="password" value="${password}"/>
42+
<property name="driver" value="\${driver}"/>
43+
<property name="url" value="\${url}"/>
44+
<property name="username" value="\${username}"/>
45+
<property name="password" value="\${password}"/>
4646
</dataSource>
4747
</environment>
4848
</environments>

0 commit comments

Comments
 (0)