How to use Markdown -Visual Studio Code

Zero. markdown software a. This article uses VsCode as the markdown software. Click Vscode to enter the website to install the latest version of visualStudioCode. b. After the installation is complete, open VsCode and install the following plug-ins on the extension bar: Markdown All in One Markdown Preview Enhanced Markdown Image The steps are as […]

markdown mathematical symbols

Directory title Example approximately equal to inequality sign Less than or equal to, greater than or equal to Not equal to Multiplication sign Click and multiply division sign plus or minus sign endless Sum tiring Greek alphabet arrow Integral, double integral, curve integral Trigonometric functions gradient Because Therefore arbitrariness and existence Belong and not belong […]

Summary of Jupter Notebook and Markdown shortcut keys

Jupter Notebook 1. Start Jupter Notebook Open the installed Anaconda, find Jupter Notebook, and click 2. Shortcut keys Command mode (press Esc to enable) F: find and replace Enter: Enter editing mode Ctrl-Shift-F or Ctrl-Shift-P or P: Open the command palette Ctrl-Enter: Run the selected unit Shift-Enter: Run this unit and select the next unit […]

Vue2 implements markdown syntax support

Vue2 implements markdown syntax support, code highlighting, line number display, and copy function Components involved: vue-markdown, highlight.js, highlight-line-numbers, clipboard Completed functions: Render data in markdown format, code part highlight, code display line number, code can be copied with one click 1. Dependency installation //Install vue-markdown dependencies npm install vue-markdown //Install highlight npm install highlight.js //Installation […]

Render MarkDown in antd and customize an anchor directory TOC (focusing on solving the problem that the navigation directory does not follow the scrolling of the document)

1. Overall idea Since there are many long documents that need to be rendered, I think the MarkDown method is more suitable for management, so I have tested integrating the MarkDown rendering module in antd in the past two days. General idea reference: https://blog.csdn.net/Sakuraaaa_/article/details/128400497 Thank you for your generous efforts. Parse MarkDown using react-markdown Use […]

Using cpolar intranet penetration to implement remote Stackedit Markdown editor

Article directory 1. docker deployment Stackedit 2. Local access 3. Linux installation cpolar 4. Configure Stackedit public network access address 5. Access Stackedit remotely from the public network 6. Fixed Stackedit public network address StackEdit is a popular Markdown editor with 20.7k stars on GitHub! , which supports saving Markdown notes to multiple repositories, including […]

Deploy Stackedit Markdown editor locally and achieve remote access through cpolar intranet penetration

Article directory 1. docker deployment Stackedit 2. Local access 3. Linux installation cpolar 4. Configure Stackedit public network access address 5. Access Stackedit remotely from the public network 6. Fixed Stackedit public network address StackEdit is a popular Markdown editor with 20.7k stars on GitHub! , which supports saving Markdown notes to multiple repositories, including […]

HtmlTableToMarkdown (table to markdown) in java

package com.medipath.helper.web; import cn.hutool.core.util.StrUtil; import cn.hutool.json.JSONUtil; import com.medipath.helper.web.vo.Node; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; import java.util.ArrayList; import java.util.Comparator; import java.util.List; public class TableToMatrix { public static void main(String[] args) { String html = “<table>\\ ” + ” <tr>\\ ” + ” <td>\\ ” + ” <p>company</p></td>\\ ” + ” <td>\\ ” + ” […]

Play with Markdown Tool Series

Zero, learning website Official link Wild website link Wild data link 1. Set font 1. Font <font face=”黑体”>I am boldface</font> <font face=”宋体”>I am Songti</font> <font face=”Microsoft Yahei”>I am Microsoft Yaheizi</font> <font face=”fantasy”>I am the word fantasy</font> <font face=”Helvetica”>I am Helvetica</font> <font face=”Times New Roman”>I am Times New Roman</font> 2. Font color # Method 1 Light […]