We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Mixer2Engine.saveToString(tag) add a new line for every tags, so I'm getting different results between a template and an output in same browsers.
template code:
<p><a href="link1">link1</a><a href="link2">link2</a></p>
screenshot:
output:
<p> <a href="link1">link1</a> <a href="link2">link2</a> </p>
zero template example:
List<Object> aList = new ArrayList<Object>(); for (int i = 0; i < 2; i++) { A linkA = TagCreator.a(); linkA.getContent().add("link" + i); linkA.setHref("link" + i); aList.add(linkA); } P p = TagCreator.p(); p.getContent().addAll(aList);
screenshot(same result):
The text was updated successfully, but these errors were encountered:
refs #4
0265553
try SNAPSHOT version... see http://mixer2.org/site/download.html
っていうか、日本語でもいいっすよ。
Sorry, something went wrong.
SNAPSHOT version で意図した表示になることを確認しました。 素早い対応ありがとうございます。
nabedge
No branches or pull requests
Mixer2Engine.saveToString(tag) add a new line for every tags, so I'm getting different results between a template and an output in same browsers.
template code:
screenshot:
output:
screenshot:
zero template example:
screenshot(same result):
The text was updated successfully, but these errors were encountered: