---
title: "Markdown Bullet List action for ActionClip"
canonical_url: "https://actionclip.app/actions/markdown-bullet-list"
document_type: "standalone_action"
official: true
action_count: 1
catalog_schema_version: 1
catalog_revision: "2026-08-21.1"
catalog_published_at: "2026-08-20T18:50:00Z"
---

# Markdown Bullet List action for ActionClip

Turn selected lines into a Markdown bullet list.

## What it does

Adds a hyphen marker to each non-empty line while preserving indentation and replacing existing list or checkbox markers.

## Action details

| Field | Value |
| --- | --- |
| Category | Markdown |
| Action type | JavaScript |
| Result | Replace or copy text |
| Internet | Not required |

## Action and outcome

| Action | Outcome |
| --- | --- |
| **Markdown Bullet List** — Selected text: Design 2. Build - [x] Ship | - Design - Build - Ship |

## How to turn selected lines into a Markdown bullet list with ActionClip

1. Select the text you want to use.
2. Choose **Markdown Bullet List** from ActionClip.
3. Review the result, then replace the selection or copy the new text.

## Requirements

No setup required.

## Privacy

Runs locally in ActionClip’s JavaScript sandbox. Selected text does not leave your Mac.

## Action configuration

````javascript
function run(selected_text) {
  return selected_text
    .split(/\r\n?|\n/)
    .filter((line) => !/^[ \t]*$/.test(line))
    .map((line) => {
      const indent = (line.match(/^[ \t]*/) || [""])[0];
      const content = line
        .slice(indent.length)
        .replace(/^(?:(?:[-+*]|\d+[.)])\s+)?(?:\[[ xX]\]\s+)?/, "")
        .trim();
      return indent + "- " + content;
    })
    .join("\n");
}
````

## Links

- [HTML listing](https://actionclip.app/actions/markdown-bullet-list)
- [Download action definition](https://actionclip.app/actions/markdown-bullet-list.actionclip)
- [Browse Markdown actions](https://actionclip.app/marketplace#marketplace-markdown)
- [All Marketplace listings](https://actionclip.app/marketplace)
