在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):madskristensen/MarkdownEditor开源软件地址(OpenSource Url):https://github.com/madskristensen/MarkdownEditor开源编程语言(OpenSource Language):C# 81.0%开源软件介绍(OpenSource Introduction):Markdown EditorDownload this extension from the VS Gallery (VS 2022) or get the CI build. A full featured Markdown editor with live preview and syntax highlighting. Supports GitHub flavored Markdown. See the change log for changes and road map. Features
Syntax highlightingAll fonts can be changed in Tools -> Options -> Environment -> Fonts and Colors dialog. GitHub and other flavorsAdvanced markdown extensions are supported to give more features to the syntax. This includes pipe tables, emoji, mathematics and a lot more. Live Preview WindowThe preview window opens up on the right side of the document when it opens. Every time the markdown document is modified, the preview window will update. Any code blocks receives full syntax highlighting in the preview window. Here's an example of JavaScript code rendered. The preview window is automatically scrolled to match the scroll position of the document. As the document is scrolled up and down, the preview window will follow. Live preview can be disabled in the settings.
Custom stylesheetsThe preview window supports loading of custom stylesheets. It will look for a file called md-styles.css in the same directory as the currently opened markdown file or any parent directory. If no md-styles.css file is found it will look for it in %userprofile%. If it still isn't found it will use the built in stylesheet. To generate a custom stylesheet, simply right-click inside the markdown editor document and select Add Custom Stylesheet... The name of the custom stylesheet can be changed in the settings. Preview HTML templateThe preview window also supports loading of HTML template, which will be detailed in Auto-generate HTML files section. When the markdown document is updated, the markdown editor will
call Drag 'n drop imagesDrag an image directly from Solution Explorer onto the document to insert the appropriate markdown that will render the image. Paste imagesThis is really helpful for copying images from a browser or for inserting screen shots. Simply copy an image into the clipboard and paste it directly into the document. This will prompt you for a file name relative to the document and then it inserts the appropriate markdown. It will even parse the file name and make a friendly name to use for the alt text. OutliningAny fenced code and HTML blocks can be collapsed, so that this: ...can be collapsed into this: Keyboard shortcutsCtrl+B makes the selected text bold by wrapping it with Ctrl+I makes the selected text italic by wrapping it with Ctrl+Shift+C wraps the selected text in a code block. Ctrl+Space checks and unchecks task list items. - [x] task list item Tab increases indentation of list items. Shift+Tab decreases indentation of list items. Ctrl+K,C wraps the selection with HTML comments. Ctrl+K,U removes HTML comments surrounding the selection/caret. Ctrl+PgUp moves caret to previous heading Ctrl+PgDown moves caret to next heading Light BulbsThe suggested actions shown in light bulbs makes it easier to perform common tasks. For instance, converting the selected text to a link will result in this: Auto-generate HTML filesBy right-clicking any Markdown file in Solution Explorer, you can turn on automatic generation of a HTML file. It will wrap the output rendered markdown in a HTML template that looks like this: <!DOCTYPE html>
<html>
<head>
<title>[title]</title>
</head>
<body>
[content]
</body>
</html> You can provide your own HTML template by dropping a file with the name md-template.html in the same or parent folder to the markdown file. If not found, it will search %userprofile%. Just make sure to include the [content] token in the template. And the [title] token is optional if you need a title. SettingsControl the settings for this extension under Tools -> Options -> Text Editor -> Markdown ContributeCheck out the contribution guidelines if you want to contribute to this project. For cloning and building this project yourself, make sure to install the Extensibility Tools 2015 extension for Visual Studio which enables some features used by this project. License |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论