-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Add a way to intentionally insert line break inside a oneLine
#176
Comments
+1. I'd like a set of tags that work exactly like YAML Multiline Strings with the double newline in folded style to produce a newline in the result, the final chomping option, and (like the tags in this package already do) default chomping of the first newline. |
@ricokahler I think both 2 & 3 are worth considering. If you still want to tackle them, PRs are welcome! In that case please create two separate PRs for those features. @reidgould Do I understand correctly that proposal number 3. is what you have in mind or is it something different? |
Is this still open, I would like to work on this. Having a paragraph tagged literal would be great. And the escaping function also sounds like it can open up a lot of new use cases |
Sure, go ahead! I think the second proposal is the best one because it's the most explicit. Would you like to work on that? |
@vipulbhj i opened this issue and then i got busy, then i forgot to work on it 😅 please finish what i started lol |
@ricokahler sure, which one should we go for ?? |
const paragraph = createTag(
replaceResultTransformer(/(?:\n+)/g, '\n'),
trimResultTransformer(),
); Does this look okay to you guys ?? |
+1. I'm fond of method 3, personally. I may attempt to get a PR for this but just incase I don't - maybe someone will finish this? Edit: Spent some time on it and couldn't figure it out. Hopefully someone better at regex can pick this up |
Definitely the 3rd option, like Markdown. Hard wrapped paragraphs should be restored to one line, but distinct paragraphs should remain intact. |
@vipulbhj this was close but did not work for me. This works to implement method 3: const doubleReturnNewline = new TemplateTag(
// remove instances of single line breaks
replaceResultTransformer(/(?<=.)\n(?!\n+)/g, ''),
// replace instances of two or more line breaks with one line break
replaceResultTransformer(/(?<=.)\n{2,}/g, '\n'),
trimResultTransformer(),
); May only work for server/node usage due to lookbehind/lookahead |
First off, thanks for an amazing and simple library! I like using
oneLine
to keep long text within 100 characters 🙌. However, (as far as I know) there is no way to add an intentional line break in aoneLine
.For example, I'll have a longer paragraph like so:
and my intention would be to add two intentional line breaks after "created equal." and maybe an additional line break after "should do this.".
I have three proposals to get this feature:
oneLine
(or any other tag) sees it, it will add the intentional line breakinstead of importing
escape
, there could be an escape sequence similar to javascript's backslashes\
The logic for the
paragraph
tag (could use renaming) is for every two consecutive line breaks (without considering whitespace), it will insert one line break. The rest of the line breaks will be ignored.I would be willing to work on the PRs after I get your blessing for any or all of the above proposals. I think both 2 and 3 are worth implementing.
Let me know what you think and I apologize if I missed something!
The text was updated successfully, but these errors were encountered: