Jason Khanlar
Jason Khanlar
Aha! I glanced through the actual code, and the convert function in lib/builder/BuilderFunctions.js definitely suggests that the "Serialization Settings" are the "Convert Options" https://oozcitak.github.io/xmlbuilder2/serialization.html#serialization-settings Therefore: ConvertOptions: - allowEmptyTags - format...
Note that rather than this ""feature"" idea being built in to the library, I whipped up this code to match what appears to be hard-coded inconsistency in MediaWiki Special:Export XML...
This bug report seems related. I started using xmlbuilder2 with v3.0.2, and I'm trying to convert XML to JSON and back to XML and verify the output identically matches the...
Debugging the code referenced in https://github.com/oozcitak/xmlbuilder2/issues/117#issuecomment-1090494249 particularly modifying `lib/readers/BaseReader.js` ```js BaseReader.prototype._decodeText = function (text) { if (text == null) return text; console.log('decoding', text, 'after', text.replace(/&(quot|amp|apos|lt|gt);/g, function (_match, tag) { return...
Since yesterday, everything that I commented about regarding my own spontaneous investigation of the code base pertaining to converting "`&`" to "`&`" (and apparently back again to "`&`" all within...
Also in https://github.com/oozcitak/xmlbuilder2/issues/117#issuecomment-1090494249 I went backwards, trying to wrap my head around understanding things out of order. I'll try again to make sense of understanding what is happening, but in...
@oozcitak I propose some kind of ConvertOption boolean to disable \# 11 (see https://github.com/oozcitak/xmlbuilder2/issues/117#issuecomment-1092054607) from reverting the characters back into HTML entities. When working with JavaScript objects (converting XML source...
Oh, I just realized something that seems confusing. \# 11 lib/writers/BaseWriter.js, BaseWriter.prototype._serializeText function Note: This is BaseWriter. This is not XMLWriter. BaseWriter. And in this file in that _serializeText function,...
I'm getting a similar issue now also. F7111-1331 error code for all videos Nevermind. I recompiled `qtwebflix` and it works now.
> "If we were to include implementation details for JavaScript, then why should we not also include implementation details for Python, C/C++, C#, Rust, PHP, Go, etc." I also am...