Tell me how in notepad ++ arrange line breaks automatically (can there be a special plugin?) So that the code looks like:

<html><head><title></title></head><body></body></html> 

Became:

 <html> <head> <title> </title> </head> <body> </body> </html> 

Then you can use the IdentByFold plugin for automatic tab placement.

    3 answers 3

    Try replacing > with >\r\n (you may need extended search mode).

      Thanks, @Etki , a good option. Maybe someone will help in the future - we turn the code into a convenient readable form:

      1. We are replacing> with> \ r \ n in the extended search mode;
      2. We are replacing <with \ r \ n <in the extended search mode;
      3. We remove empty lines through edit-> Line Operations-> Remove Empty Lines and edit-> Line Operations-> Remove Empty Lines (Containing Blank Characters);
      4. We use plugin IdentByFold

      The output is a readable code.

        I figured out this problem.

        • Go to "Options" →
        • Hot Keys →
        • Enter in the Filter "Word wrap", there is such a function →
        • Choose a combination, for example, Ctrl + Alt + 0
        • Save the change, paste the desired text into NotePad ++ and use the keys on the keyboard to activate the word wrap command.

        Done!

        Now the text is transferred by words, not beyond, and now you do not need to scroll forward as much as the text in one line.

        • it looks like it doesn’t give the exact result mentioned in the question - Grundy