mdv-live 0.3.2 → 0.3.3
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.
- package/CHANGELOG.md +6 -0
- package/bin/mdv.js +1 -1
- package/package.json +1 -1
- package/src/server.js +1 -1
- package/src/static/styles.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.3] - 2026-01-31
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Print preview missing padding on markdown content
|
|
13
|
+
|
|
8
14
|
## [0.3.2] - 2026-01-31
|
|
9
15
|
|
|
10
16
|
### Changed
|
package/bin/mdv.js
CHANGED
package/package.json
CHANGED
package/src/server.js
CHANGED
|
@@ -17,7 +17,7 @@ import { setupWebSocket } from './websocket.js';
|
|
|
17
17
|
|
|
18
18
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
19
19
|
const STATIC_DIR = path.join(__dirname, 'static');
|
|
20
|
-
const VERSION = '0.3.
|
|
20
|
+
const VERSION = '0.3.3';
|
|
21
21
|
|
|
22
22
|
/**
|
|
23
23
|
* Setup API routes for the Express app
|
package/src/static/styles.css
CHANGED
|
@@ -777,7 +777,7 @@ body {
|
|
|
777
777
|
|
|
778
778
|
.main { width: 100% !important; }
|
|
779
779
|
.content { flex: none !important; }
|
|
780
|
-
.markdown-body { max-width: 100% !important; }
|
|
780
|
+
.markdown-body { max-width: 100% !important; padding: 0 20px !important; }
|
|
781
781
|
.markdown-body img { max-width: 100% !important; }
|
|
782
782
|
.markdown-body code { background: #f0f0f0 !important; }
|
|
783
783
|
.markdown-body pre { background: #f8f8f8 !important; border: 1px solid #ddd !important; }
|