Justin Braithwaite
Justin Braithwaite
This is not a bug in React. Using an entity reference for `&` (e.g. `&`) is the correct behavior for [xhtml documents](https://www.w3.org/TR/xhtml1/guidelines.html#C_12): > In both SGML and XML, the ampersand...
This is the change needed to get the behavior you expect: Replace https://github.com/facebook/react/blob/ee409ea3b577f9ff37d36ccbfc642058ad783bb0/packages/react-dom/src/server/ReactPartialRenderer.js#L383 with an escape hatch: ```js if (tagVerbatim === 'meta' && propKey === 'content') { markup = 'content="'...
Definitely, I love typescript!
I did some research, does this library work instead? https://github.com/Borewit/musicbrainz-api
Hey Max, Tests are [timing out](https://travis-ci.org/maxkueng/node-musicbrainz), maybe consider using [Sinon](http://sinonjs.org/) (or something similar) to fake http requests?