Hacker News new | ask | show | jobs
by mr_00ff00 126 days ago
So is Markdown a programming language? Any logic for html, is therefore Markdown as well.
1 comments

sure, it's a dsl for generating formatted output
If we trim markdown to just italic, bold, and underline, is it still a programming language?

What if we trim even further, to just the ASCII control codes? My newline characters make the computer perform a special action to generate formatted output. Is that programming?

if we trim a regex down to literal character matches is it still a regex?
So any text file is a programming language?
I would say that a "language" is a necessary component of a "programming language".

An empty file was an IOCCC winner: https://www.ioccc.org/1994/smr/ but you need to interpret that empty file as C source in order to reasonably claim to have programmed the computer.

My reasoning comes more from the other direction: someone who writes HTML is programming therefore HTML is a programming language.

Can you give a clearer definition of when a person "is programming"?

Your earlier definition talked about giving the computer a capability, but that capability just seemed to be displaying a specific file?

Where is the cutoff on the line from HTML to markdown to ASCII? (noting that ASCII uses control codes that trigger special behavior)