This website works better with JavaScript.
Home
Explore
Help
Sign In
ligan
/
DocX
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
Fixed bug in GetSize(XElement Xml)
br elements --\n-- should return size = 1
master
coffeycathal_cp
15 years ago
parent
782cb374cd
commit
8da395c29b
1 changed files
with
1 additions
and
1 deletions
Split View
Show Diff Stats
1
1
DocX/HelperFunctions.cs
+ 1
- 1
DocX/HelperFunctions.cs
View File
@@ -20,7 +20,7 @@ namespace Novacode
case "tab":
return 1;
case "br":
return
0
;
return
1
;
case "t":
goto case "delText";
case "delText":
Write
Preview
Loading…
Cancel
Save