Transcluding sections inserts unnecessary line breaks, which can be annoying.
Take these two tiddlers ("Slices" and "Test", respectively):
!Foo
This is @@Foo@@.
!Bar
This is @@Bar@@.
!Baz
This is @@Baz@@.
# <<tiddler Slices##Bar>>
# xxx<<tiddler Slices##Bar>>xxx
# xxx<<tiddler "Slices##Bar">>xxx
# xxx<<tiddler [[Slices##Bar]]>>xxx
# xxx<<tiddler Slices##Boo>>xxx
<html>
<style type="text/css">
#tiddlerTest li {
margin: 10px;
border: 1px solid #AAA;
padding: 5px;
background-color: #EEE;
}
</style>
</html>
The first list item in "Test" will look like this:
1.
This is @@Foo@@.
There seems to be no way to get rid of that line break.
(Thanks to Fred for the bug report.)