gitextract_b5jnwai9/ ├── .gitignore ├── .nvmrc ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── public/ │ ├── _redirects │ ├── index.html │ ├── robots.txt │ └── sitemap.xml └── src/ ├── App.js ├── api/ │ └── index.js ├── assets/ │ └── fonts/ │ └── font.css ├── components/ │ ├── CustomToolbar.js │ ├── CustomTools/ │ │ ├── CustomAllTextRemoval.js │ │ ├── CustomBlockQuote.js │ │ ├── CustomBold.js │ │ ├── CustomCodeBlock.js │ │ ├── CustomCodeInline.js │ │ ├── CustomContents.js │ │ ├── CustomEditorView.js │ │ ├── CustomFirstLetterUppercase.js │ │ ├── CustomFold.js │ │ ├── CustomFullScreen.js │ │ ├── CustomHeader.js │ │ ├── CustomHorizontalRule.js │ │ ├── CustomImageLink.js │ │ ├── CustomItalic.js │ │ ├── CustomLink.js │ │ ├── CustomLowercase.js │ │ ├── CustomMarkdownView.js │ │ ├── CustomOrderedList.js │ │ ├── CustomRedo.js │ │ ├── CustomShare.js │ │ ├── CustomStrikethrough.js │ │ ├── CustomTable.js │ │ ├── CustomUnOrderedList.js │ │ ├── CustomUnderline.js │ │ ├── CustomUndo.js │ │ └── CustomUppercase.js │ ├── Editor.js │ ├── Home.js │ ├── Loading.js │ ├── MarkdownView.js │ ├── ReactHelmet.js │ ├── SharingModal.js │ ├── TextScreen.js │ ├── Title.js │ ├── __test__/ │ │ └── Title.test.js │ └── shared/ │ ├── ErrorPage.js │ ├── SaveBox.js │ ├── SectionLine.js │ ├── TextScreenWrapper.js │ └── __test__/ │ ├── Editor.test.js │ └── ErrorPage.test.js ├── constants/ │ ├── index.js │ └── welcomeMessage.js ├── features/ │ ├── saga.js │ └── slice.js ├── index.css ├── index.js ├── setupTests.js ├── store/ │ └── index.js └── utils/ ├── __test__/ │ └── utils.test.js ├── addTypeBeforeAndAfter.js ├── addTypeCurrentPosition.js ├── addTypeCurrentRow.js ├── addTypeDraggedRows.js ├── draftStorage.js ├── shareDocument.js └── urlShare.js