• NumG
    link
    fedilink
    arrow-up
    36
    arrow-down
    3
    ·
    16 days ago

    I am in doubt. That wouldn’t even compile. But who am I to think somebody changing something like this would actually do a test compilation afterwards…

    • dan@upvote.au
      link
      fedilink
      arrow-up
      42
      ·
      edit-2
      16 days ago

      HTML isn’t compiled, and unknown attributes are allowed. The best practice is to prefix non-standard attributes with data- (e.g. <div data-foo="test">) but nothing enforces that. Custom attributes can be retrieved in JavaScript or targeted in CSS rules.

    • Aa!@lemmy.world
      link
      fedilink
      arrow-up
      2
      ·
      edit-2
      16 days ago

      Compile? HTML?

      I’ve been off of web front end work for a while, but do CI systems actually do a “compile” type step on HTML these days?

      • NumG
        link
        fedilink
        arrow-up
        1
        ·
        16 days ago

        Yeah, you’re right. My mind was stuck. No compilation for HTML of course. I was thinking of automatic testing in CI systems after you commit. Compilation for Java, C++, etc.; some other form of testing for HTML (renaming tags like these should throw some errors I suppose)