fix(ui): 노드 사이 기본 줄바꿈 제거
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -639,7 +639,7 @@ function toText(){
|
|||||||
let first=true;
|
let first=true;
|
||||||
for(const v of node.values){
|
for(const v of node.values){
|
||||||
if(v.type==='node'){
|
if(v.type==='node'){
|
||||||
t+='\n'+rNode(v.node); first=false;
|
t+=rNode(v.node); first=false;
|
||||||
} else if(v.data!==undefined&&v.data!==null&&String(v.data).length){
|
} else if(v.data!==undefined&&v.data!==null&&String(v.data).length){
|
||||||
t+=(first?nl:'\n')+String(v.data); first=false;
|
t+=(first?nl:'\n')+String(v.data); first=false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user