-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[lexical-website] Documentation Update: Add Documentation for html Pr…
…operty in Lexical Editor Configuration (#6770) Co-authored-by: Bob Ippolito <bob@redivi.com>
- Loading branch information
Showing
4 changed files
with
168 additions
and
3 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
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 @@ | ||
/** | ||
* Copyright (c) Meta Platforms, Inc. and affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
*/ | ||
|
||
const MIN_ALLOWED_FONT_SIZE = 8; | ||
const MAX_ALLOWED_FONT_SIZE = 72; | ||
|
||
export const parseAllowedFontSize = (input: string): string => { | ||
const match = input.match(/^(\d+(?:\.\d+)?)px$/); | ||
if (match) { | ||
const n = Number(match[1]); | ||
if (n >= MIN_ALLOWED_FONT_SIZE && n <= MAX_ALLOWED_FONT_SIZE) { | ||
return input; | ||
} | ||
} | ||
return ''; | ||
}; | ||
|
||
export function parseAllowedColor(input: string) { | ||
return /^rgb\(\d+, \d+, \d+\)$/.test(input) ? input : ''; | ||
} |
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