wyreframe 0.7.0 → 0.7.1
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/README.md +1 -1
- package/package.json +1 -1
- package/src/renderer/Renderer.mjs +1 -1
- package/src/renderer/Renderer.res +3 -1
package/README.md
CHANGED
|
@@ -344,7 +344,7 @@ if (result.success) {
|
|
|
344
344
|
- [Examples](docs/examples.md)
|
|
345
345
|
- [Developer Guide](docs/developer-guide.md)
|
|
346
346
|
- [Testing Guide](docs/testing.md)
|
|
347
|
-
- [Live Demo](
|
|
347
|
+
- [Live Demo](https://wyreframe.studio/)
|
|
348
348
|
|
|
349
349
|
## Development
|
|
350
350
|
|
package/package.json
CHANGED
|
@@ -172,10 +172,12 @@ let defaultStyles = `
|
|
|
172
172
|
// ============================================================================
|
|
173
173
|
|
|
174
174
|
// Noise text filter - filters out box border characters
|
|
175
|
+
// Note: Empty lines are NOT noise - they represent intentional vertical spacing (Issue #16)
|
|
175
176
|
let isNoiseText = (content: string): bool => {
|
|
176
177
|
let trimmed = content->String.trim
|
|
177
178
|
if trimmed == "" {
|
|
178
|
-
|
|
179
|
+
// Empty lines should be preserved as vertical spacing
|
|
180
|
+
false
|
|
179
181
|
} else {
|
|
180
182
|
// Box border patterns: +---+, |, ===, etc.
|
|
181
183
|
let borderPattern = %re("/^[+|=\-\s]+$/")
|