Change HTML tag list from upper to lower case letters?

Change HTML tag list from upper to lower case letters?

601
Advanced UserAdvanced User
601

    Feb 06, 2006#1

    Is there a way to make the HTML tags in the tag list lower case?

    Thanks.

    6,686585
    Grand MasterGrand Master
    6,686585

      Re: making html tags lowercase?

      Feb 06, 2006#2

      Yes, you can manually edit all tags with the tag edit dialog (right mouse in tag list window - Modify Tags) or you make it with this macro (modify the 2 paths according to your installation):

      InsertMode
      ColumnModeOff
      HexOff
      Open "C:\Program Files\UltraEdit-32\taglist.txt"
      Find "[Tag Group - HTML - Tags]"
      IfNotFound
      ExitMacro
      EndIf
      Key HOME
      Key DOWN ARROW
      Clipboard 9
      StartSelect
      Find Select "^p^p"
      Copy
      NewFile
      Paste
      Top
      Loop
      Find ":UEDS"
      IfFound
      Key RIGHT ARROW
      StartSelect
      Key END
      ToLower
      EndSelect
      Else
      ExitLoop
      EndIf
      EndLoop
      SelectAll
      StartSelect
      Copy
      CloseFile NoSave
      Paste
      ClearClipboard
      Clipboard 0
      SaveAs "C:\Program Files\UltraEdit-32\MyTaglist.txt"

      Don't forget to enable the macro property Continue if a Find with Replace not found which must be set for this macro.

      The macro saves the modified taglist file to a new name. I think this is better than modifying the original because the Taglist.txt file is always updated during an update of UltraEdit. Although the update is done with a notification and creation of a backup, many users have a compulsion to click on OK buttons without reading.

      To use this new modified taglist file instead of original open the modify tags dialog as described above and click on the Browse button to select MyTaglist.txt.
      Best regards from an UC/UE/UES for Windows user from Austria

      601
      Advanced UserAdvanced User
      601

        Re: making html tags lowercase?

        Feb 06, 2006#3

        Thanks! I really need to learn how to write some macros! The macro worked very well.

        6,686585
        Grand MasterGrand Master
        6,686585

          Re: Change HTML tag list from upper case to lower case?

          Apr 19, 2007#4

          Or look at use-submitted tag files page of this website. There is an updated tag list file for HTML named HTML Tags and Entities - 03/23/2007.

          This tag list file contains both, a group with HTML tags in upper and a group with HTML tags in lower case and some other HTML related tag list groups.

          On the download page is also a link to a README.TXT which describes how to modify the tag list file.