Daniele Orlando
Daniele Orlando
**Dart** and **Elm** are other candidate languages.
Same topic discussed and addressed on [StackOveflow](https://stackoverflow.com/a/49152014/1750243).
I can replicate the bug with tesseract.js `2.1.5`. From the source code https://github.com/naptha/tesseract.js/blob/adcb5b875986ebe61d7235e64d956d648c53c1dd/src/createWorker.js#L142-L154 the jobId is not handled.
I just moved to use JSX inside Vue and it is not clear what path to follow, why and which is best (now that Babel 7 is released and stable)...
I can reproduce the problem with Webpack `5.36`. ```js output: { clean: true, }, devServer: { writeToDisk: true, }, ```
Guys, the ampersand `&` like `` and other characters must be escaped in XML. Nothing surprising here. You can use CDATA blocks (they exist for this) or convert the special...
I'll evaluate for the next release (2.0) to catch the exception and convert any special character to a valid XML representation.
If you want to stay fluent: ``` php $xml->add('property', true) ->add('id', $property->id) ->add('url', true) ->cdata($property->url_web) ->query('..') ->add('title', true) ->cdata($property->title); ``` Otherwise: ``` php $prop = $xml->add('property', true); $prop->add('id', $property->id); $prop->add('url',...
Yes, it is good point. I think your proposal will be part of the next release. Thank you very much for the feedback.
As soon as I'll find time in the next weeks I'll add this feature. Pull Requests are welcome of course.