mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-09 23:15:43 +01:00
27 lines
450 B
TypeScript
27 lines
450 B
TypeScript
export default `# Xml Code Block in Markdown
|
|
\`\`\`xml
|
|
<project [...]>
|
|
|
|
[...]
|
|
|
|
<build>
|
|
<plugins>
|
|
|
|
[...]
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>animal-sniffer-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
[...]
|
|
|
|
</project>
|
|
\`\`\``;
|