I have a paragraph of text and want to comment out only part of it. I could place a '%' to start the comment and then use a single <CR> after the end of the comment. Is there another way so that I don't need to place <CR>s after every comment? Below is an example of what I'm trying to do.
Code: Select all
This is my first sentence. %This is a hidden comment.% This second sentence should display.
Thanks,This is my first sentence. This second sentence should display.
-J