Skip to content

Commit

Permalink
add <pre> tag to tutd expr template
Browse files Browse the repository at this point in the history
  • Loading branch information
agentm committed Apr 14, 2024
1 parent ea10707 commit 46584ee
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TutDForSQLDevelopers/template_sql.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<body>

<!-- template_sql.html -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
Expand Down
8 changes: 5 additions & 3 deletions TutDForSQLDevelopers/template_tutd.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<body>

<!-- template_tutd.html -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
Expand Down Expand Up @@ -30,8 +30,10 @@ <h1>{title}</h1>
<th width="50%">TutorialD</th>
</tr>
<tr>
<td>
<code class="language-sql">{tutd}</code>
<td>
<pre>
<code class="language-sql">{tutd}</code>
</pre>
<pre>
{tutd_res}
</pre>
Expand Down
2 changes: 1 addition & 1 deletion TutDForSQLDevelopers/template_tutd_sql.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
</head>
<body>

<!-- template_tutd_sql.html -->
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/styles/default.min.css">
<script src="https://cdn.jsdelivr.net/gh/highlightjs/[email protected]/build/highlight.min.js"></script>
Expand Down

0 comments on commit 46584ee

Please sign in to comment.