├── .eslintrc.cjs ├── .gitignore ├── .husky └── pre-commit ├── .prettierrc ├── README.md ├── index.html ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── favicon.svg ├── images │ └── slush.webp └── opengraph.png ├── src ├── App.tsx ├── components │ ├── DraggableSection.tsx │ ├── Header.tsx │ ├── MonacoEditor.tsx │ ├── Preview.tsx │ ├── RawMD.tsx │ ├── Section.tsx │ ├── SectionCreation.tsx │ ├── SortableItem.tsx │ ├── common │ │ └── Button.tsx │ ├── constants.ts │ └── theme-provider.tsx ├── i18n.js ├── index.css ├── lib │ ├── fuse.ts │ └── handleMDFormat.ts ├── main.tsx ├── placeholders.json ├── store │ └── useSections.ts └── theme │ └── onedarkpro.json ├── tailwind.config.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | # .husky/pre-commit 2 | npx lint-staged 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/public/favicon.svg -------------------------------------------------------------------------------- /public/images/slush.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/public/images/slush.webp -------------------------------------------------------------------------------- /public/opengraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/public/opengraph.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/DraggableSection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/DraggableSection.tsx -------------------------------------------------------------------------------- /src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/Header.tsx -------------------------------------------------------------------------------- /src/components/MonacoEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/MonacoEditor.tsx -------------------------------------------------------------------------------- /src/components/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/Preview.tsx -------------------------------------------------------------------------------- /src/components/RawMD.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/RawMD.tsx -------------------------------------------------------------------------------- /src/components/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/Section.tsx -------------------------------------------------------------------------------- /src/components/SectionCreation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/SectionCreation.tsx -------------------------------------------------------------------------------- /src/components/SortableItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/SortableItem.tsx -------------------------------------------------------------------------------- /src/components/common/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/common/Button.tsx -------------------------------------------------------------------------------- /src/components/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/constants.ts -------------------------------------------------------------------------------- /src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /src/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/i18n.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/index.css -------------------------------------------------------------------------------- /src/lib/fuse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/lib/fuse.ts -------------------------------------------------------------------------------- /src/lib/handleMDFormat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/lib/handleMDFormat.ts -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/placeholders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/placeholders.json -------------------------------------------------------------------------------- /src/store/useSections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/store/useSections.ts -------------------------------------------------------------------------------- /src/theme/onedarkpro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/src/theme/onedarkpro.json -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/afordigital/make-a-readme/HEAD/vite.config.ts --------------------------------------------------------------------------------