• SzethFriendOfNimi@lemmy.world
    link
    fedilink
    arrow-up
    0
    ·
    7 months ago

    It’s a markup language. There’s no debugging.

    I don’t have to iterate through versions of the markup to find what works.

    It doesn’t have specific documentation that is mostly the same but differs slightly on different runtimes

    And it doesn’t have IO, dynamic extensibility or modularity….

    Wait a second. Hmm… nah, it’s still just a markup language. Just one derived over time that feels like it was the brainchild of Satan and Cthulu

    • lightnegative@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      6 months ago

      No. Markup languages are configuration for an interpreter.

      inb4 code is configuration for a compiler and binary is configuration for a processor

      • Aceticon@lemmy.world
        link
        fedilink
        arrow-up
        0
        ·
        edit-2
        6 months ago

        Actually, there are plenty of interpreted programming languages, for example Perl or Shell Script so that definition is incorrect.

        HTML is not a programming language because it only defines form (how things look), and does not control action (executing operations by itself).

        The language for Web Development that controls the execution of operations (say: if the user fills a certain field, fetch related data from a server and display it in certain page areas) is called Javascript and is separate from HTML (which existed before Javascript and can exist without it).

        Modern Web standards have also moved a lot of the form stuff to yet another language - CSS, Cascading Style Sheets - which is more powerful and reusable, so HTML is more used for the visual structure of the page and less for things like the fonts of the various pieces of text, though it still contains support for that stuff and you can still use it.

    • CaptPretentious@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      7 months ago

      True. Once I was working on a WPF app and someone looked at it and then showed me a simple YAML file they put together for Ansible and legit thought ‘YAML was better’ and what I was doing was dumb. They considered themselves a programmer.