mirror of
https://github.com/docmost/docmost.git
synced 2025-11-20 23:21:08 +10:00
feat: third-party embeds (#423)
* wip * Add more providers * icons * unify embed providers (Youtube) * fix case * YT music * remove redundant code
This commit is contained in:
@ -71,3 +71,7 @@ export function decodeBase64ToSvgString(base64Data: string): string {
|
||||
|
||||
return decodeBase64(base64Data);
|
||||
}
|
||||
|
||||
export function capitalizeFirstChar(string: string) {
|
||||
return string.charAt(0).toUpperCase() + string.slice(1);
|
||||
}
|
||||
Reference in New Issue
Block a user