├── .eslintrc.json ├── .gitignore ├── README.md ├── next-env.d.ts ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico ├── font │ ├── whitney-300.woff │ ├── whitney-300.woff2 │ ├── whitney-400.woff │ ├── whitney-400.woff2 │ ├── whitney-500.woff │ ├── whitney-500.woff2 │ ├── whitney-600.woff │ ├── whitney-600.woff2 │ ├── whitney-700.woff │ └── whitney-700.woff2 └── vercel.svg ├── src ├── components │ ├── Copier.tsx │ ├── DiscordEmbed.tsx │ ├── Highlight.tsx │ ├── LimitedInput.tsx │ ├── Output.tsx │ └── ValueInput.tsx ├── lib │ ├── interfaces.ts │ ├── markdown │ │ ├── Markdown.tsx │ │ ├── helpers.ts │ │ ├── parsers.tsx │ │ └── rules │ │ │ ├── autolink.ts │ │ │ ├── blockQuote.tsx │ │ │ ├── codeBlock.tsx │ │ │ ├── emphasis.ts │ │ │ ├── escape.ts │ │ │ ├── inlineCode.tsx │ │ │ ├── lineBreak.ts │ │ │ ├── link.tsx │ │ │ ├── mention.tsx │ │ │ ├── newline.ts │ │ │ ├── paragraph.ts │ │ │ ├── spoiler.tsx │ │ │ ├── strikethrough.ts │ │ │ ├── strong.ts │ │ │ ├── text.ts │ │ │ ├── underline.ts │ │ │ └── url.tsx │ └── utils.ts ├── pages │ ├── _app.tsx │ ├── api │ │ ├── load.ts │ │ └── save.ts │ └── index.tsx └── styles │ └── globals.scss ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/README.md -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/font/whitney-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-300.woff -------------------------------------------------------------------------------- /public/font/whitney-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-300.woff2 -------------------------------------------------------------------------------- /public/font/whitney-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-400.woff -------------------------------------------------------------------------------- /public/font/whitney-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-400.woff2 -------------------------------------------------------------------------------- /public/font/whitney-500.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-500.woff -------------------------------------------------------------------------------- /public/font/whitney-500.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-500.woff2 -------------------------------------------------------------------------------- /public/font/whitney-600.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-600.woff -------------------------------------------------------------------------------- /public/font/whitney-600.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-600.woff2 -------------------------------------------------------------------------------- /public/font/whitney-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-700.woff -------------------------------------------------------------------------------- /public/font/whitney-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/font/whitney-700.woff2 -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/components/Copier.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/components/Copier.tsx -------------------------------------------------------------------------------- /src/components/DiscordEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/components/DiscordEmbed.tsx -------------------------------------------------------------------------------- /src/components/Highlight.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/components/Highlight.tsx -------------------------------------------------------------------------------- /src/components/LimitedInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/components/LimitedInput.tsx -------------------------------------------------------------------------------- /src/components/Output.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/components/Output.tsx -------------------------------------------------------------------------------- /src/components/ValueInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/components/ValueInput.tsx -------------------------------------------------------------------------------- /src/lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/interfaces.ts -------------------------------------------------------------------------------- /src/lib/markdown/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/Markdown.tsx -------------------------------------------------------------------------------- /src/lib/markdown/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/helpers.ts -------------------------------------------------------------------------------- /src/lib/markdown/parsers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/parsers.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/autolink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/autolink.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/blockQuote.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/blockQuote.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/codeBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/codeBlock.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/emphasis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/emphasis.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/escape.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/escape.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/inlineCode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/inlineCode.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/lineBreak.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/lineBreak.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/link.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/mention.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/mention.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/newline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/newline.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/paragraph.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/paragraph.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/spoiler.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/spoiler.tsx -------------------------------------------------------------------------------- /src/lib/markdown/rules/strikethrough.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/strikethrough.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/strong.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/strong.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/text.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/text.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/underline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/underline.ts -------------------------------------------------------------------------------- /src/lib/markdown/rules/url.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/markdown/rules/url.tsx -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/pages/_app.tsx -------------------------------------------------------------------------------- /src/pages/api/load.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/pages/api/load.ts -------------------------------------------------------------------------------- /src/pages/api/save.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/pages/api/save.ts -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/src/styles/globals.scss -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cubedhuang/discord-embed-creator/HEAD/yarn.lock --------------------------------------------------------------------------------