Edit

kc3-lang/libxkbcommon/scripts/doxygen-html-fix

Branch :

  • Show log

    Commit

  • Author : Pierre Le Marre
    Date : 2025-05-14 21:34:23
    Hash : b5f7c843
    Message : doc: Add script to fix HTML tags unsupported by Doxygen

  • scripts/doxygen-html-fix
  • #!/bin/sh
    
    # Fix the following HTML tag unknown to Doxygen:
    # - <abbr>: see https://github.com/doxygen/doxygen/issues/11574
    
    find "$1" -name "*.html" -type f -exec \
         "$2" -iE 's/&lt;abbr title="\(.*\)"&gt;\(.*\)&lt;\/abbr&gt;/<abbr title="\1">\2<\/abbr>/g' {} +