mc-markdown-viewer 1.0.1 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/main.js +2 -0
  2. package/package.json +1 -1
package/main.js CHANGED
@@ -62,6 +62,8 @@ const htmlTemplate = (content, theme = 'default') => {
62
62
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
63
63
  <title>Markdown Viewer</title>
64
64
  <script src="https://cdn.tailwindcss.com"></script>
65
+ <link rel="icon" type="image/x-icon"
66
+ href="https://mohan-chinnappan-n5.github.io/dfv/img/mc_favIcon.ico" />
65
67
  <link rel="preconnect" href="https://fonts.googleapis.com">
66
68
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
67
69
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mc-markdown-viewer",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "A beautiful CLI tool to convert Markdown files to HTML with multiple dark themes and modern styling",
5
5
 
6
6
  "main": "main.js",