Action

Obsidian Comments

Posted by pseudometa, Last update about 2 years ago

Apply Obsidian’s Comment Syntax (%% %%) around selection, or insert %%%%` if no selection.

Steps

  • script

    // Apply Markdown bold to selection, or insert ** if no selection
    const markup = "%%";
    
    const sel = editor.getSelectedText();
    const [st, len] = editor.getSelectedRange();
    
    if (!sel || sel.length == 0) {
      editor.setSelectedText(markup + markup);
      editor.setSelectedRange(st + markup.length,0);
    }
    else {
      markupText = markup + sel + markup;
      markupText  = markupText.replaceAll (markup + "- ","- " + markup);   
      
      editor.setSelectedText(markupText);
      editor.setSelectedRange(st + len + (markup.length*2),0);
    }
    

Options

  • After Success Default
    Notification Error
    Log Level Error
Items available in the Drafts Directory are uploaded by community members. Use appropriate caution reviewing downloaded items before use.