cmwoods

Results 6 comments of cmwoods

Appears that I found a work around... For the SimpleHtmlParser DOM Tree, I have to create an XmlNameSpaceManager instance, and add a namespace with a non-empty prefix to the "http://www.w3.org/1999/xhtml"...

Changed CreateHtmlElementSetAsRoot in XmlTreeBuilder.cs to have the following within the for loop (hack for error): ``` string uri = attributes.GetURI(i); if (attributes.GetLocalName(i) == "xmlns" && string.IsNullOrWhiteSpace(uri)) { uri = "http://www.w3.org/2000/xmlns/";...

I think I've got it figured out... and this looks to be the missing piece to complete my previously abandoned PR #1370. Since I can't re-open that PR (due to...

More complicated than I thought unfortunately. It appears that git functionality is influenced simply by having (or modifying) the .gitattributes file in the repo's working directory - it doesn't need...

@siprbaum - From your [next comment ](https://github.com/git-tfs/git-tfs/pull/1370#issuecomment-818032860) on our previous thread you showed me where that needed to be done and I've already previously incorporated those changes into that past...

I've run into something like this before but I didn't document my case at the time. Try the following change to see if it helps (it removes the second half...