As describe in https://github.com/lumen/lumen/issues/393
Based on the Lumen interpreter-in-browser example.
Given this:
'Elixir.Lumen.Web.Document':create_text_node(_document@1,
<<"This new text was created through Elixir in your browser. Which we all know is great. And glorious. And strange. And fine. And what is that? Oh my god! I'm writing long text!">>),
I can create the correct text.
Given this, by my formatter:
'Elixir.Lumen.Web.Document':create_text_node(_document@1,
<<"This new text was created through Elixir "
"in your browser. Which we all know is "
"great. And glorious. And strange. And "
"fine. And what is that? Oh my god! I'm "
"writing long text!">>),
I get a partial text which only includes the last two "lines". This:
fine. And what is that? Oh my god! I'm writing long text!
Am I missing something?
As describe in https://github.com/lumen/lumen/issues/393
Based on the Lumen interpreter-in-browser example.
Given this:
I can create the correct text.
Given this, by my formatter:
I get a partial text which only includes the last two "lines". This:
fine. And what is that? Oh my god! I'm writing long text!Am I missing something?