react-magic
react-magic copied to clipboard
Automatically AJAXify plain HTML with the power of React. It's magic!
I just used the html to jsx converter. In the example of ``` ``` It should remove the `xmlns:xlink` entirely, and replace `xlink:href` to `xlinkHref`. Thoughts
Really interesting project! It seems really similar to the TurboLinks project (https://github.com/turbolinks/turbolinks) I think your comparison to Ajaxify holds true "What makes React-Magic different is that it only updates the...
Hey, Inspired by the preload-on-hover behaviour offered by https://github.com/dieulot/instantclick I'm wondering if it would make sense to either _optionally_ allow such functionality here, or, if it might make sense to...
Hello, When clicking on an ID link, something like `...` the page does not scroll. It is the only issue I've had with an otherwise perfect module. Is there any...
I'm trying to convert HTML with my custom component named "Data". It looks like this: ``` html After ``` As I result I get the following JSX in which the...
JSXTransformer is long-gone, react-magic should use babel-standalone instead.
I have html string like this: ``` javascript var html = 'internal text' ``` It has `data-content` attribute which contains `<`, `>` and `"`. The output is: ``` jsx Google!">internal...
Perhaps a `-e` to add `module.exports`? I modded the cli.js in order to be able to require the generated file and insert into another component's render function directly.
HTML attributes with big integers are converted to javascript integer. ``` html My Tweets ``` ``` jsx My Tweets ``` http://facebook.github.io/react/html-jsx.html This causes problems as Javascript is able to handle...