Answer by minTwin for How do I comment out a block of tags in XML?
If you are using Eclipse IDE you can comment out lines in an XML file by highlighting them and press Ctrl+Shift+c.
View ArticleAnswer by Michał Lipok for How do I comment out a block of tags in XML?
In Notepad++ you can select few lines and use CTRL+Q which will automaticaly make block comments for selected lines.
View ArticleAnswer by Sumit for How do I comment out a block of tags in XML?
Syntax for XML :<!--Your comment-->eg.<?xml version = "1.0" encoding = "UTF-8" ?><!--here is your comment :) --><class_list>...
View ArticleAnswer by Avijit Karmakar for How do I comment out a block of tags in XML?
Here for commenting we have to write like below:<!-- Your comment here -->Shortcuts for IntelliJ Idea and EclipseFor Windows & Linux:Shortcut for Commenting a single line:Ctrl+/Shortcut for...
View ArticleAnswer by svg for How do I comment out a block of tags in XML?
You can easily comment out the data using this:<!--...
View ArticleAnswer by Kasper van den Berg for How do I comment out a block of tags in XML?
You can wrap the text with a non-existing processing-instruction, e.g.:<detail><?ignore<band height="20"><staticText><reportElement x="180" y="0" width="200"...
View ArticleAnswer by Boldewyn for How do I comment out a block of tags in XML?
If you ask, because you got errors with the <!-- --> syntax, it's most likely the CDATA section (and there the ]]> part), that then lies in the middle of the comment. It should not make a...
View ArticleAnswer by Delan Azabani for How do I comment out a block of tags in XML?
Actually, you can use the <!--...--> format with multi-lines or tags:<!-- ... ... ...-->
View ArticleAnswer by Noon Silk for How do I comment out a block of tags in XML?
You can use that style of comment across multiple lines (which exists also in HTML)<detail><band height="20"><!-- Hello, I am a multi-line XML comment<staticText><reportElement...
View ArticleHow do I comment out a block of tags in XML?
How do I comment out a block of tags in XML?I.e. How can I comment out <staticText> and everything inside it, in the code below?<detail><band...
View Article