We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5c8e7f commit 80ddfb7Copy full SHA for 80ddfb7
src/webview/leetCodePreviewProvider.ts
@@ -98,11 +98,7 @@ class LeetCodePreviewProvider extends LeetCodeWebview {
98
),
99
`</details>`,
100
].join("\n");
101
- const links: string = markdownEngine.render([
102
- `---`,
103
- `- [Discussion](${this.getDiscussionLink(url)})`,
104
- `- [Solution](${this.getSolutionLink(url)})`,
105
- ].join("\n"));
+ const links: string = markdownEngine.render(`[Discussion](${this.getDiscussionLink(url)}) | [Solution](${this.getSolutionLink(url)})`);
106
return `
107
<!DOCTYPE html>
108
<html>
@@ -120,6 +116,7 @@ class LeetCodePreviewProvider extends LeetCodeWebview {
120
116
${tags}
121
117
${companies}
122
118
${body}
119
+ <hr />
123
${links}
124
${!this.sideMode ? button.element : ""}
125
<script>
0 commit comments