# hexo-snippet-paste-tool-for-fluid commands description [Link to the extension](https://marketplace.visualstudio.com/items?itemName=Shih-Che-Lai-Simon.hexo-snippet-paste-tool-for-fluid) [Commands decription](https://hexo.fluid-dev.com/docs/en/guide) **All the commands can be called using command palatte(Press F1)** ## Paste Youtube Embed 1. copy embed code from the youtube video (right click on the video) ![Copy embed code](https://hackmd.io/_uploads/S1Sa1qmAp.png) 1. Execute the command in the command palatte 1. Automatically paste in the editor ```! <iframe width="100%" height="500" src="https://www.youtube.com/embed/tlMU0_fetQI" title="【Relax Piano 】💛 Stop Overthinking 🌻 Ghibli Medley Piano💖 Ghibli Music Brings Positive Energy 💎Ki" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe> ``` ## Paste Label * Type in `type` and `text` to customize the block ## Paste CheckBox * type in `text` and optionally `checked` and `inline` ## Paste Button * type in `url`, `text`, and `title` to customize the button ## Paste Group Images * type in `total` and `range` to specify total number of images and the images number to show in each line ## Directly paste commands Commands below will paste the template snippet directly ### Paste Fold Block ```jinja {% fold info "title" %} Some content or `markdown` {% endfold %} ``` ### Paste Note ```jinja {% note success %} Some content or `markdown` {% endnote %} ``` ### Paste Mermaid ```jinja {% mermaid %} {% endmermaid %} ```