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 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](examples/index.html)
347
+ - [Live Demo](https://wyreframe.studio/)
348
348
 
349
349
  ## Development
350
350
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wyreframe",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "ASCII wireframe + interaction DSL to HTML converter with scene transitions",
5
5
  "author": "wickedev",
6
6
  "repository": {
@@ -58,7 +58,7 @@ let defaultStyles = `
58
58
  function isNoiseText(content) {
59
59
  let trimmed = content.trim();
60
60
  if (trimmed === "") {
61
- return true;
61
+ return false;
62
62
  }
63
63
  let borderPattern = /^[+|=\-\s]+$/;
64
64
  let hasPipeOrPlus = /[+|]/;
@@ -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
- true
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]+$/")