-
-
Notifications
You must be signed in to change notification settings - Fork 5.4k
Expand file tree
/
Copy pathmarkdown-diff.constants.ts
More file actions
48 lines (33 loc) · 950 Bytes
/
Copy pathmarkdown-diff.constants.ts
File metadata and controls
48 lines (33 loc) · 950 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export const originalMarkdown = `# Release notes
## Added
- JSON export for reports
- Keyboard shortcuts for navigation
- Markdown table previews
## Fixed
- Preserve whitespace in code blocks
## Plugin support
| user | host | plugin |
| --- | --- | --- |
| mysql.infoschema | localhost | caching_sha2_password |
| mysql.session | localhost | caching_sha2_password |
| mysql.sys | localhost | caching_sha2_password |
\`inline code\` stays readable in preview mode.
`;
export const modifiedMarkdown = `# Release notes
## Added
- JSON and CSV export for reports
- Keyboard shortcuts for navigation
- Dark mode support for charts
- Markdown table previews
## Fixed
- Preserve whitespace in fenced code blocks
## Plugin support
| user | host | plugin |
| --- | --- | --- |
| mysql.session | localhost | caching_sha2_password |
| mysql.sys | localhost | caching_sha2_password |
\`\`\`sql
select user, host, plugin
from mysql.user;
\`\`\`
`;