Skip to content

Using Copymarky

Copymarky’s interface is organized into tabs that let you control how your Markdown is generated. This guide explains each section.

When you open Copymarky (via the popup or sidepanel), you’ll see three main tabs and an element picker:

  1. Format — Customize Markdown output style
  2. Output — Control what metadata is included
  3. Replace — Apply text replacements to clean up content
  4. Element Picker — Select specific page sections to convert

The Format tab controls how Markdown is generated. Here’s what each option does:

  • ATX: Uses hash symbols (#, ##, ###, etc.)
    • Example: # Heading 1
  • Setext: Uses underlines for top-level headings
    • Example: Heading 1 with === below

Choose based on your preference. ATX is more widely supported.

Choose how list items are marked:

  • Hyphen (-) — Most common
  • Asterisk (*) — Also widely supported
  • Plus (+) — Less common but valid
  • Fenced: Uses triple backticks (```) — recommended and more common
    • Example:
      ```javascript
      console.log("Hello");
      ```
  • Indented: Uses 4-space indentation — older style, less flexible
  • Inline: Links are written inline within the text
    • Example: [Link text](https://example.com)
  • Referenced: Links are listed at the bottom of the document
    • Example: [Link text][1] with [1]: https://example.com at the end

Inline is simpler for short documents; referenced is better for link-heavy content.

  • Include: Convert images as Markdown image syntax (![alt](url))
  • Remove: Strip all images from the output
  • Link Only: Convert images to plain links instead of embedding them

Choose based on your use case. For note-taking, “Include” preserves visual context. For text-only documentation, “Remove” or “Link Only” is cleaner.


The Output tab controls metadata and page information:

When enabled, adds the webpage title as a top-level heading at the start of the Markdown:

# Original Webpage Title
[rest of content...]

Useful for documentation and note-taking to maintain context.

When enabled, adds a link back to the original webpage (usually at the end):

[Source: https://example.com](https://example.com)

Recommended for research, citations, or when you want to revisit the original.


The Replace tab shows your active text replacements. These rules automatically clean up and modify your Markdown.

Text replacements apply patterns before and after conversion:

  • Pre replacements: Modify the HTML before Markdown conversion (remove ads, fix source HTML)
  • Post replacements: Modify the Markdown after conversion (normalize spacing, fix URLs)
  1. Check which replacements are enabled (toggle on/off without deleting)
  2. Review their order (rules apply top-to-bottom)
  3. Click “Copy as Markdown” to apply all active replacements

For detailed instructions and examples, see the Text Replacements Guide.


The element picker lets you select a specific section of the page instead of converting everything.

  1. Click the Element Picker button (usually an icon in the toolbar or tab area)
  2. Your cursor changes to indicate picker mode
  3. Hover over page content — elements are highlighted as you move
  4. Click the section you want to convert
  5. Your selection is confirmed (usually shown with a visual indicator)
  6. Click “Copy as Markdown” to convert only the selected content

Copymarky automatically filters out elements that don’t add value:

  • Buttons and interactive controls
  • JavaScript and hidden elements
  • Navigation menus (sometimes)
  • Ads and tracking elements

This keeps your Markdown clean and focused on the actual content.

  • Start with a large element (like a section or article) and refine if needed
  • If a selection includes unwanted content, try picking a more specific sub-element
  • The element picker is useful for multi-article pages or pages with lots of sidebar content