Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

React component output formatting issue with multiple <img> tags in a row #32

Open
dvmorris opened this issue Jun 13, 2016 · 0 comments

Comments

@dvmorris
Copy link

Not sure what's causing this, but thought I would give you a heads up.

HTML input from WebFlow:

                  <div class="w-clearfix shiftalertdisplayrightwrapper"><img class="avatar" data-ix="user-actions-popover" height="40" src="images/dave.png" width="40"><img class="avatar" data-ix="user-actions-popover" height="40" src="images/jason.png" width="40"><img class="avatar" data-ix="user-actions-popover" height="40" src="images/shawn.png" width="40">
                  </div>

Generated React Component

            <div className="w-clearfix shiftalertdisplayrightwrapper">
              <img data-ix="user-actions-popover"
                height="40"
                src="images/dave.png"
                width="40"
                className="avatar" /><img data-ix="user-actions-popover"
                                                                                                                      height="40"
                                                                                                                      src="images/jason.png"
                                                                                                                      width="40"
                                                                                                                      className="avatar" /><img data-ix="user-actions-popover"
                                                                                                                                                                                                                             height="40"
                                                                                                                                                                                                                             src="images/shawn.png"
                                                                                                                                                                                                                             width="40"
                                                                                                                                                                                                                             className="avatar" />
            </div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant