Customizing Markdown Syntax in ASP.NET MVC Markdown Editor Control
18 Nov 20181 minute to read
The ASP.NET MVC Markdown Editor allows you to modify the default Markdown syntax to match your preferred formatting style. You can override the default syntax using the Formatter property, enabling a customized Markdown experience.
Defining Custom Markdown Formatting
You can define custom symbols for different Markdown formatting options:
- Use
+for unordered lists instead of-. - Use
__text__for bold text instead of**text**. - Use
_text_for italic text instead of*text*.
The following example demonstrates how to customize Markdown tags in the editor: