This input is an easy list of elements. Add a prefix, and you get a quick way to format it into a structured list for documentation, notes or online content. Let me ask you something: have you ever been in a situation where you have to choose between two things you really like?
Apple
iPhone
Orange
Grapes
Each item is converted to a neat markdown-style bullet list with the prefix "- " and the option "Skip empty lines" enabled. This is great for note-taking and content development.
- Apple
- iPhone
- Orange
- Grapes
Plain lists can be easily converted to code-friendly formats for developers. Here is a list of column names that must be transformed into a SQL `SELECT` query or variable declarations.
customer_id first_name last_name email signup_date
The prefix is "`" and the suffix is "`". This gives a list of objects enclosed in backticks, followed by commas. The output is ready to use as SQL query or JavaScript array.
`customer_id`, `first_name`, `last_name`, `email`, `signup_date`,