This input is a simple list of items. By adding a prefix, we can quickly format it into a structured list suitable for documentation, notes, or web content.
Apples Oranges Bananas Grapes
With the prefix "- " and "Skip empty lines" enabled, each item is converted into a clean markdown-style bullet list. This is perfect for note-taking and content creation.
- Apples - Oranges - Bananas - Grapes
Developers often need to transform plain lists into code-friendly formats. Here, a list of column names needs to be turned into a SQL `SELECT` statement or variable declarations.
customer_id first_name last_name email signup_date
Using a prefix of "`" and a suffix of "`," transforms the list into backtick-wrapped items followed by commas. This output is ready for a SQL query or a JavaScript array.
`customer_id`, `first_name`, `last_name`, `email`, `signup_date`,