Totally agree.
I would like to add that adding the ability to tag many nodes at the same time is not a sufficient workarround.
A single multi line node is not the same as multiple nodes writen one after another.
Sometimes, multiple lines add up to a whole, and each line only makes sense as part of that whole.
Every time a line is tagged, the other lines should be tagged as well. Every time a value is writen to a field of a line, the same value should be copied to the sme field of all other lines. Every time a line is referenced, the other lines should be referenced as well, and the reference should be ordered one after the other exactly in the right order.
An example:
An explanation that includes a diagram. In many cases, the explanation is structured in the following way: a simle explanation of the idea, a diagram, and then further elaboration. Right now, this explanation is forced to be split between at least 3 nodes, even though it is a single explanation. If I want to reference this explanation, I can't, I can only reference parts of it. I am forced to either reference all the nodes that the explanation contains and order them correctly, or reference only one node and hope that everyone looking at the reference will understand that it's partial and that they need to look at the original node.
I also agree that having a "title node" in the cases I presented is also not a sufficient workarround.
Some things don't have a title. I find that forcing the users to title things creates what I like to call "Title Hell", where you write everything that you want, but you are not finished because you cannot find an appropriate title for it.
It is frustrating, and it makes you resist writing, because you know that after you are finished with writing the things you acctualy want to write, you also have to do "chores" and choose a title for it.
And the worse part is that ussually the titles are worthless. You never use them when you search for what you wrote. And they convey so litle about the accual content that you have to constantly alias then whenever you use then as a reference anyway.

Hi,
I would like to share some kind of workaround.
The following CSS currently changes most of the app to RTL.
You can use a chrome extention called "Stylebot" to alter the css of the app.
This currently does not work for Code Nodes (haven't managed to figure out how this work yet...).
This should work for now, but I do not know if it is stable and will work after they release new features.
/* Change Nodes to appear from right to left */
.listItems {
direction: rtl;
}
/* Change sub nodes indent to be from the right and not from the left*/
.OutlinerItem-module_children__9oZW1 > div:first-of-type {
margin-left: 0rem;
margin-right: calc(var(--levelIndent) * 1);
}
/* Change toggle to appear to the right of the nodes */
.Bullet-module_chevronContainer__G4LBL {
right: -1.4rem;
left: calc(100% + var(--listItemHorizontalSpacing));
}
/* Change title text direction */
.listContentItem {
direction: rtl;
}
/* Fixing tag spacing */
.wrapEditableAndMenu:has([data-role=template-list]) .editable {
margin-right: 0em;
margin-left: 0.35em;
}
.TemplateTag-module_tagPrefix__fUBU4 {
padding-left: 0rem;
padding-right: 0.25rem;
text-align: center;
border-top-right-radius: var(--tagRadius);
border-bottom-right-radius: var(--tagRadius);
}
.TemplateTag-module_tag__8TbLO {
padding-right: 0.2rem;
padding-left: 0.25rem;
border-top-right-radius: var(--tagRadius);
border-bottom-right-radius: var(--tagRadius);
}
/* Moved Opened reference box text direction to the right */
.InlineInfoNodes-module_scroller__JUpAO {
direction: rtl;
}
I must say that I do not have a lot of experience with CSS and it still only took me a couple of hours, without even understanding the source code. I do not see how this would take very long for pro front end developers to develop.
Hope this can help someone.
For me it stills does not make the app good enough to use as it might stop working every day. Hope that it might be usefull to someone else.
Hope that some day this feature will be implemented so we can acually use the app!