remark-break-line 0.0.11 → 0.0.13

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/lib/index.js +16 -9
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -38,15 +38,15 @@ const elementSize = {
38
38
  * @returns
39
39
  * Transform.
40
40
  */
41
- export default function remarkBreakLongLines({ maxLineLength = Number.POSITIVE_INFINITY, removeLinebreaksAndMultipleSpaces = true, mergableElements = ['emphasis'] } = {}) {
41
+ export default function remarkBreakLongLines({ maxLineLength = 80, removeLinebreaksAndMultipleSpaces = false, mergableElements = [] } = {}) {
42
42
  /**
43
- * Transform.
44
- *
45
- * @param {Root} tree
46
- * Tree.
47
- * @returns {undefined}
48
- * Nothing.
49
- */
43
+ * Transform.
44
+ *
45
+ * @param {Root} tree
46
+ * Tree.
47
+ * @returns {undefined}
48
+ * Nothing.
49
+ */
50
50
  return function (tree) {
51
51
  visit(tree, function (node) {
52
52
  if (node.type === 'paragraph') {
@@ -206,6 +206,9 @@ export default function remarkBreakLongLines({ maxLineLength = Number.POSITIVE_I
206
206
  // We need to increase i because we increase the text
207
207
  i++
208
208
  n.value = '\n' + n.value
209
+ } else if (currentLine + additionalCharacters == maxLineLength - baseIndention) {
210
+ n.value = replaceAt(n.value, i, '\n')
211
+
209
212
  } else {
210
213
  n.value = replaceAt(n.value, lastIndex, '\n')
211
214
  }
@@ -229,7 +232,11 @@ export default function remarkBreakLongLines({ maxLineLength = Number.POSITIVE_I
229
232
  // we need to split the node
230
233
  const current = path[path.length - 1];
231
234
  assert(current === 'text');
232
-
235
+ if (lastIndex === -1) {
236
+ return {
237
+ type: 'break-before'
238
+ }
239
+ }
233
240
  return {
234
241
  type: 'split',
235
242
  replaceBy: [{ type: 'text', value: n.value.substring(0, lastIndex) }, { type: 'text', value: n.value.substring(lastIndex + 1) }]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "remark-break-line",
3
- "version": "0.0.11",
3
+ "version": "0.0.13",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "keywords": [