Using Copymarky
Copymarky’s interface is organized into tabs that let you control how your Markdown is generated. This guide explains each section.
Overview
Section titled “Overview”When you open Copymarky (via the popup or sidepanel), you’ll see three main tabs and an element picker:
- Format — Customize Markdown output style
- Output — Control what metadata is included
- Replace — Apply text replacements to clean up content
- Element Picker — Select specific page sections to convert
Format Tab
Section titled “Format Tab”The Format tab controls how Markdown is generated. Here’s what each option does:
Heading Style
Section titled “Heading Style”- ATX: Uses hash symbols (
#,##,###, etc.)- Example:
# Heading 1
- Example:
- Setext: Uses underlines for top-level headings
- Example:
Heading 1with===below
- Example:
Choose based on your preference. ATX is more widely supported.
Bullet Marker
Section titled “Bullet Marker”Choose how list items are marked:
- Hyphen (
-) — Most common - Asterisk (
*) — Also widely supported - Plus (
+) — Less common but valid
Code Block Style
Section titled “Code Block Style”- Fenced: Uses triple backticks (
```) — recommended and more common- Example:
```javascriptconsole.log("Hello");```
- Example:
- Indented: Uses 4-space indentation — older style, less flexible
Link Style
Section titled “Link Style”- Inline: Links are written inline within the text
- Example:
[Link text](https://example.com)
- Example:
- Referenced: Links are listed at the bottom of the document
- Example:
[Link text][1]with[1]: https://example.comat the end
- Example:
Inline is simpler for short documents; referenced is better for link-heavy content.
Image Handling
Section titled “Image Handling”- Include: Convert images as Markdown image syntax (
) - 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.
Output Tab
Section titled “Output Tab”The Output tab controls metadata and page information:
Include Page Title
Section titled “Include Page Title”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.
Include Source URL
Section titled “Include Source URL”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.
Replace Tab
Section titled “Replace Tab”The Replace tab shows your active text replacements. These rules automatically clean up and modify your Markdown.
Overview
Section titled “Overview”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)
Using Replacements
Section titled “Using Replacements”- Check which replacements are enabled (toggle on/off without deleting)
- Review their order (rules apply top-to-bottom)
- Click “Copy as Markdown” to apply all active replacements
For detailed instructions and examples, see the Text Replacements Guide.
Element Picker
Section titled “Element Picker”The element picker lets you select a specific section of the page instead of converting everything.
How to Use
Section titled “How to Use”- Click the Element Picker button (usually an icon in the toolbar or tab area)
- Your cursor changes to indicate picker mode
- Hover over page content — elements are highlighted as you move
- Click the section you want to convert
- Your selection is confirmed (usually shown with a visual indicator)
- Click “Copy as Markdown” to convert only the selected content
What Gets Ignored
Section titled “What Gets Ignored”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
Next Steps
Section titled “Next Steps”- Text Replacements — Learn how to automate cleanup
- Settings Reference — Detailed documentation of all options
- FAQ & Troubleshooting — Solve common issues