-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed minor bugs and updated stories (#1030)
* Fixed minor bugs and updated stories * Updated text-formatting story
- Loading branch information
Showing
6 changed files
with
47 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
import { lowlight } from "lowlight"; | ||
|
||
export const SORTED_LANGUAGE_LIST = lowlight.listLanguages().sort(); | ||
export const SORTED_LANGUAGE_LIST = [ | ||
...lowlight.listLanguages(), | ||
"html", | ||
].sort(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
import { Meta } from "@storybook/addon-docs"; | ||
|
||
<Meta | ||
title="Walkthroughs/Text formatting" | ||
parameters={{ | ||
layout: "padded", | ||
viewMode: "docs", | ||
previewTabs: { | ||
canvas: { | ||
hidden: true, | ||
}, | ||
}, | ||
}} | ||
/> | ||
|
||
# Formatting text in rich text editor | ||
|
||
<br /> | ||
|
||
neetoEditor offers a diverse range of features beyond basic text formatting. In addition to various formatting options | ||
such as bold, italic, inline code, and strikethrough text, you can seamlessly integrate links and embedded content, | ||
as well as include images, videos, and other attachments, providing a comprehensive set of tools for various types of | ||
content and formatting. | ||
|
||
[Learn more about formatting text](https://help.neetocal.com/articles/formatting-text-in-rich-text-editors). |