Development of zero foundation exclusive Markdown online editor
Development of zero foundation exclusive Markdown online editor
Online case
Markdown is also a markup language, which is similar to HTML and has nothing to do with CSS. The display styles of markdown editors (Typora, etc.) we usually use and see are displayed after being converted to HTML and CSS with built-in styles;
Nowadays, the way o ...
Posted by worldofcarp on Thu, 24 Feb 2022 07:27:02 +0100
Markdown learning (entry level)
1, Introduction to Markdown
Is a lightweight markup language (it's super easy to write notes anyway) Strongly recommended by Typore (but it seems to charge)
2, Paragraphs and emphasis
*xax* //Italics
_xax_ //Italics
**yay** //Bold
__yay__ //Bold
~~Delete line~~ //Delete line
effect: xax xax
yay yay
Delete line
3, Title ...
Posted by bjdouros on Sat, 12 Feb 2022 03:04:55 +0100
Take you hand-in-hand for 10 minutes to create a simple Markdown editor
preface
Recently, I need to implement the requirement of a markdown editor in my project, which is developed based on the React framework, similar to Nuggets:
My first thought is that if you can use excellent open source, you must use open source. After all, you can't always build wheels repeatedly. So I asked a lot of friends in my front-e ...
Posted by playaz on Thu, 03 Feb 2022 02:41:57 +0100
How to use notedown to complete the format conversion between ipynb and markdown?
Introduction: use Convert IPython Notebooks to markdown (and back) downnote in can easily convert IPYNB to Markdown format. This paper introduces and tests the use of notedown software. However, if you use notedown to convert markdowns from CSDN, you need to filter the number of more than markdowns in CSDN. Keywords: notedown, ipynb, markd ...
Posted by bampot on Sat, 15 Jan 2022 05:08:56 +0100
markdown list, title, formula, picture, hyperlink, superscript and subscript, Gantt chart, flow chart, selection box and other grammar notes
Markdown list, title, formula, picture, hyperlink, superscript and subscript, Gantt chart, flow chart, selection box and other grammar notes
1, Multi level title
Markdown syntax
# Primary title (1) # No.)
## Secondary title (2) # No.)
### Level III title (3) # No.)
#### Level IV title (4) # No.)
##### Five level titles (5) # No.)
##### ...
Posted by dpluth on Fri, 14 Jan 2022 05:45:16 +0100
[personal open source] Vue code view: a code interaction component for online editing and real-time preview
Component introductionVue code view is a lightweight code interaction component based on vue 2.x, which can edit and run code and preview effect in real time in web pages.Using this component, regardless of the sample code in vue page or Markdown document, the effect is as follows:Origin of componentsWhen the page or Markdown document in the pr ...
Posted by AZDoc on Mon, 01 Nov 2021 09:36:28 +0100
Markdown edit syntax
Markdown concise grammar manual
Tag: CMD markdown
1. Italics and bold
Use * and * * for italics and bold.
Example:
This is italic and this is bold.
2. Hierarchical title
Use = = = to indicate the primary title, and - to indicate the secondary title.
Example:
This is a primary title
============================
This is a secondar ...
Posted by garty on Sat, 11 Sep 2021 07:29:15 +0200