├── .buildkite ├── pipeline.yml ├── publish-aztec-pod.sh ├── publish-editor-pod.sh └── shared-pipeline-vars ├── .bundle └── config ├── .editorconfig ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── custom.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .rubocop.yml ├── .ruby-version ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ ├── Aztec.xcscheme │ ├── WordPress-AztecEditor-iOS-Package.xcscheme │ └── WordPressEditor.xcscheme ├── .xcode-version ├── CHANGELOG.md ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── Documentation ├── Architecture.md ├── ReleaseProcess.md └── resources │ ├── html_to_nsattributedstring.png │ └── nsattributedstring_to_html.png ├── Example ├── AztecExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ └── xcshareddata │ │ └── xcschemes │ │ └── AztecExample.xcscheme ├── AztecUITests │ ├── AztecUITests.swift │ ├── FormattingTests.swift │ ├── HighPriorityIssuesTests.swift │ ├── ImagesTests.swift │ ├── Info.plist │ ├── LinkTests.swift │ ├── Logger.swift │ ├── Pages │ │ ├── BasePage.swift │ │ ├── BlogsPage.swift │ │ ├── EditLinkPage.swift │ │ └── EditorPage.swift │ └── XCTest+Extensions.swift ├── Example.xcworkspace │ └── contents.xcworkspacedata └── Example │ ├── AppDelegate.swift │ ├── AttachmentDetailsViewController.storyboard │ ├── AttachmentDetailsViewController.swift │ ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard │ ├── EditorDemoController.swift │ ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ └── ItunesArtwork@2x.png │ └── Contents.json │ ├── Info.plist │ ├── MediaInserter.swift │ ├── SampleContent │ ├── SampleText.rtf │ ├── bigLists.html │ ├── captions.html │ ├── content.html │ ├── failedMedia.html │ ├── gallery.html │ ├── gutenberg.html │ ├── imagesOverlays.html │ ├── underline.html │ ├── video.html │ └── videoShortcodes.html │ ├── TextViewAttachmentDelegateProvider.swift │ ├── UIImage+SaveTo.swift │ ├── UnknownEditorViewController.swift │ └── ViewController.swift ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── Package.swift ├── README.md ├── RepoAssets └── aztec.png ├── Scripts └── build.sh ├── Sources ├── Aztec │ ├── Assets │ │ ├── Media.xcassets │ │ │ ├── Contents.json │ │ │ ├── image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── gridicons-image-dark.pdf │ │ │ │ └── gridicons-image.pdf │ │ │ └── play.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── gridicons-play.pdf │ │ └── html_colors.json │ ├── Aztec.swift │ └── Classes │ │ ├── .gitkeep │ │ ├── Constants │ │ └── Metrics.swift │ │ ├── Converters │ │ ├── AttributesToStringAttributes │ │ │ ├── Base │ │ │ │ ├── ElementAttributeConverter.swift │ │ │ │ └── MainAttributesConverter.swift │ │ │ └── Implementations │ │ │ │ ├── BoldElementAttributeConverter.swift │ │ │ │ ├── ForegroundColorElementAttributeConverter.swift │ │ │ │ ├── ItalicElementAttributeConverter.swift │ │ │ │ └── UnderlineElementAttributeConverter.swift │ │ ├── ElementsToAttributedString │ │ │ ├── Base │ │ │ │ ├── AttachmentElementConverter.swift │ │ │ │ ├── ElementConverter.swift │ │ │ │ └── FormatterElementConverter.swift │ │ │ └── Implementations │ │ │ │ ├── BRElementConverter.swift │ │ │ │ ├── CiteElementConverter.swift │ │ │ │ ├── FigcaptionElementConverter.swift │ │ │ │ ├── FigureElementConverter.swift │ │ │ │ ├── GenericElementConverter.swift │ │ │ │ ├── HRElementConverter.swift │ │ │ │ ├── ImageElementConverter.swift │ │ │ │ ├── LIElementConverter.swift │ │ │ │ └── VideoElementConverter.swift │ │ └── StringAttributesToAttributes │ │ │ ├── Base │ │ │ ├── ConditionalStringAttributeConverter.swift │ │ │ └── StringAttributeConverter.swift │ │ │ ├── ConditionalConverters │ │ │ └── ConditionalItalicStringAttributeConverter.swift │ │ │ ├── Implementations │ │ │ ├── BoldStringAttributeConverter.swift │ │ │ ├── CiteStringAttributeConverter.swift │ │ │ ├── ItalicStringAttributeConverter.swift │ │ │ ├── MarkStringAttributeConverter.swift │ │ │ ├── SubscriptStringAttributeConverter.swift │ │ │ ├── SuperscriptStringAttributeConverter.swift │ │ │ └── UnderlineStringAttributeConverter.swift │ │ │ └── Utility │ │ │ └── HTMLStyleToggler.swift │ │ ├── EditorView │ │ └── EditorView.swift │ │ ├── Extensions │ │ ├── Array+Attribute.swift │ │ ├── Array+Helpers.swift │ │ ├── Array+ShortcodeAttribute.swift │ │ ├── Dictionary+AttributedStringKey.swift │ │ ├── DocumentReadingOptionKey+Swift4.swift │ │ ├── DocumentType+Swift4.swift │ │ ├── NSAttributedString+Analyzers.swift │ │ ├── NSAttributedString+Archive.swift │ │ ├── NSAttributedString+Attachments.swift │ │ ├── NSAttributedString+CharacterName.swift │ │ ├── NSAttributedString+FontTraits.swift │ │ ├── NSAttributedString+Lists.swift │ │ ├── NSAttributedString+ParagraphRange.swift │ │ ├── NSAttributedString+ReplaceOcurrences.swift │ │ ├── NSAttributedStringKey+Aztec.swift │ │ ├── NSAttributedStringKey+Conversion.swift │ │ ├── NSBundle+AztecBundle.swift │ │ ├── NSLayoutManager+Attachments.swift │ │ ├── NSMutableAttributedString+ParagraphProperty.swift │ │ ├── NSMutableAttributedString+ReplaceAttributes.swift │ │ ├── NSMutableAttributedString+ReplaceOcurrences.swift │ │ ├── NSRange+Helpers.swift │ │ ├── NSTextingResult+Helpers.swift │ │ ├── String+EndOfLine.swift │ │ ├── String+Paragraph.swift │ │ ├── String+RangeConversion.swift │ │ ├── StringUTF16+RangeConversion.swift │ │ ├── UIColor+Parsers.swift │ │ ├── UIFont+Emoji.swift │ │ ├── UIFont+Traits.swift │ │ ├── UIImage+Resize.swift │ │ ├── UILayoutPriority+Swift4.swift │ │ ├── UIPasteboard+Helpers.swift │ │ ├── UIStackView+Helpers.swift │ │ ├── UITextView+Delegate.swift │ │ └── UITextView+Undoable.swift │ │ ├── Formatters │ │ ├── Base │ │ │ ├── AttributeFormatter.swift │ │ │ ├── FontFormatter.swift │ │ │ ├── ParagraphAttributeFormatter.swift │ │ │ └── StandardAttributeFormatter.swift │ │ └── Implementations │ │ │ ├── BlockquoteFormatter.swift │ │ │ ├── BoldFormatter.swift │ │ │ ├── BoldWithShadowForHeadingFormatter.swift │ │ │ ├── CiteFormatter.swift │ │ │ ├── CodeFormatter.swift │ │ │ ├── ColorFormatter.swift │ │ │ ├── FigcaptionFormatter.swift │ │ │ ├── FigureFormatter.swift │ │ │ ├── HTMLDivFormatter.swift │ │ │ ├── HTMLParagraphFormatter.swift │ │ │ ├── HeaderFormatter.swift │ │ │ ├── ItalicFormatter.swift │ │ │ ├── LiFormatter.swift │ │ │ ├── LinkFormatter.swift │ │ │ ├── MarkFormatter.swift │ │ │ ├── PreFormatter.swift │ │ │ ├── StrikethroughFormatter.swift │ │ │ ├── SubscriptFormatter.swift │ │ │ ├── SuperscriptFormatter.swift │ │ │ ├── TextListFormatter.swift │ │ │ └── UnderlineFormatter.swift │ │ ├── GUI │ │ ├── Assets.swift │ │ └── FormatBar │ │ │ ├── FormatBar.swift │ │ │ ├── FormatBarDelegate.swift │ │ │ ├── FormatBarItem.swift │ │ │ └── FormattingIdentifier.swift │ │ ├── NSAttributedString │ │ ├── Attributes │ │ │ ├── HTMLRepresentation.swift │ │ │ └── UnsupportedHTML.swift │ │ └── Conversions │ │ │ ├── AttachmentToElementConverter │ │ │ ├── Base │ │ │ │ └── AttachmentToElementConverter.swift │ │ │ ├── CommentAttachmentToElementConverter.swift │ │ │ ├── HTMLAttachmentToElementConverter.swift │ │ │ ├── ImageAttachmentToElementConverter.swift │ │ │ ├── LineAttachmentToElementConverter.swift │ │ │ └── VideoAttachmentToElementConverter.swift │ │ │ ├── AttributedStringParser.swift │ │ │ ├── AttributedStringSerializer.swift │ │ │ ├── HTMLConverter.swift │ │ │ └── ParagraphPropertyConverters │ │ │ └── Base │ │ │ └── ParagraphPropertyConverter.swift │ │ ├── Plugin │ │ ├── Plugin.swift │ │ ├── PluginInputCustomizer.swift │ │ ├── PluginManager.swift │ │ └── PluginOutputCustomizer.swift │ │ ├── Processor │ │ ├── HTMLProcessor.swift │ │ ├── HTMLTreeProcessor.swift │ │ ├── PipelineProcessor.swift │ │ ├── Processor.swift │ │ ├── RegexProcessor.swift │ │ ├── ShortcodeAttribute.swift │ │ ├── ShortcodeAttributeParser.swift │ │ └── ShortcodeAttributeSerializer.swift │ │ ├── Renderers │ │ ├── CommentAttachmentRenderer.swift │ │ └── HTMLAttachmentRenderer.swift │ │ └── TextKit │ │ ├── ColorProvider.swift │ │ ├── CommentAttachment.swift │ │ ├── Configuration.swift │ │ ├── FontProvider.swift │ │ ├── HTMLAttachment.swift │ │ ├── HTMLStorage.swift │ │ ├── ImageAttachment.swift │ │ ├── LayoutManager.swift │ │ ├── LineAttachment.swift │ │ ├── MediaAttachment.swift │ │ ├── ParagraphProperty │ │ ├── Blockquote.swift │ │ ├── Figcaption.swift │ │ ├── Figure.swift │ │ ├── HTMLDiv.swift │ │ ├── HTMLLi.swift │ │ ├── HTMLParagraph.swift │ │ ├── HTMLPre.swift │ │ ├── Header.swift │ │ ├── ParagraphProperty.swift │ │ └── TextList.swift │ │ ├── ParagraphStyle.swift │ │ ├── RenderableAttachment.swift │ │ ├── TextStorage.swift │ │ ├── TextView.swift │ │ ├── TextViewPasteboardDelegate.swift │ │ └── VideoAttachment.swift ├── HTMLParser │ ├── Converters │ │ ├── In │ │ │ ├── CSSParser.swift │ │ │ ├── HTMLParser.swift │ │ │ ├── InAttributeConverter.swift │ │ │ ├── InAttributesConverter.swift │ │ │ ├── InNodeConverter.swift │ │ │ └── InNodesConverter.swift │ │ └── Out │ │ │ └── HTMLSerializer.swift │ ├── DOM │ │ ├── Data │ │ │ ├── Attribute.swift │ │ │ ├── AttributeType.swift │ │ │ ├── CSSAttribute.swift │ │ │ ├── CSSAttributeType.swift │ │ │ ├── CommentNode.swift │ │ │ ├── Element.swift │ │ │ ├── ElementNode.swift │ │ │ ├── Node.swift │ │ │ └── TextNode.swift │ │ └── Logic │ │ │ └── CSS │ │ │ ├── BoldCSSAttributeMatcher.swift │ │ │ ├── CSSAttributeMatcher.swift │ │ │ ├── ForegroundColorCSSAttributeMatcher.swift │ │ │ ├── ItalicCSSAttributeMatcher.swift │ │ │ └── UnderlineCSSAttributeMatcher.swift │ ├── ElementsToHTML │ │ ├── Base │ │ │ └── ElementToStringConverter.swift │ │ └── Implementations │ │ │ └── GenericElementToTagConverter.swift │ ├── Extensions │ │ ├── Character+Name.swift │ │ ├── String+CharacterName.swift │ │ └── String+HTML.swift │ └── HTMLToElements │ │ ├── CLinkedListToArrayConverter.swift │ │ └── Converter.swift └── WordPressEditor │ ├── Assets │ └── aztec.png │ └── Classes │ ├── Extensions │ ├── ImageAttachment+WordPress.swift │ ├── MediaAttachment+WordPress.swift │ ├── String+RegEx.swift │ └── VideoAttachment+WordPress.swift │ ├── Plugins │ └── WordPressPlugin │ │ ├── Calypso │ │ ├── AutopRemovep │ │ │ ├── AutoPProcessor.swift │ │ │ └── RemovePProcessor.swift │ │ ├── CaptionShortcode │ │ │ ├── CaptionShortcodeInputProcessor.swift │ │ │ └── CaptionShortcodeOutputProcessor.swift │ │ ├── Embeds │ │ │ └── WordPressPasteboardDelegate.swift │ │ ├── GalleryShortcode │ │ │ ├── GalleryAttachment.swift │ │ │ ├── GalleryAttachmentToElementConverter.swift │ │ │ ├── GalleryElementConverter.swift │ │ │ ├── GalleryElementToTagConverter.swift │ │ │ ├── GalleryShortcodeInputProcessor.swift │ │ │ └── GallerySupportedAttribute.swift │ │ └── VideoShortcode │ │ │ └── VideoShortcodeProcessor.swift │ │ ├── Gutenberg │ │ ├── CommentNode+Gutenberg.swift │ │ ├── GutenbergAttributeDecoder.swift │ │ ├── GutenbergAttributeEncoder.swift │ │ ├── GutenbergAttributeNames.swift │ │ ├── GutenbergInputHTMLTreeProcessor.swift │ │ ├── GutenbergOutputHTMLTreeProcessor.swift │ │ ├── Gutenblock.swift │ │ ├── GutenblockConverter.swift │ │ ├── GutenpackAttachment.swift │ │ ├── GutenpackAttachmentRenderer.swift │ │ ├── GutenpackAttachmentToElementConverter.swift │ │ └── GutenpackConverter.swift │ │ ├── WordPressInputCustomizer.swift │ │ ├── WordPressOutputCustomizer.swift │ │ └── WordPressPlugin.swift │ ├── Processors │ ├── EmbedURLProcessor.swift │ └── ShortcodeProcessor.swift │ ├── Renderers │ └── SpecialTagAttachmentRenderer.swift │ └── ViewControllers │ └── OptionsTableViewController │ ├── OptionsTablePresenter.swift │ └── OptionsTableViewController.swift ├── Tests ├── AztecTests │ ├── Aztec.xctestplan │ ├── Converters │ │ ├── AttributesToStringAttributes │ │ │ ├── BoldElementAttributeConverterTests.swift │ │ │ ├── ItalicElementAttributeConverterTests.swift │ │ │ └── UnderlineElementAttributeConverterTests.swift │ │ ├── ElementToAttributedString │ │ │ └── GenericElementConverterTests.swift │ │ └── StringAttributesToAttributes │ │ │ ├── BoldStringAttributeConverterTests.swift │ │ │ ├── ItalicStringAttributeConverterTests.swift │ │ │ └── UnderlineStringAttributeConverterTests.swift │ ├── EditorView │ │ └── EditorViewTests.swift │ ├── Extensions │ │ ├── ArrayHelperTests.swift │ │ ├── NSAttributedStringAnalyzerTests.swift │ │ ├── NSAttributedStringAttachmentsTests.swift │ │ ├── NSAttributedStringKeyHelperTests.swift │ │ ├── NSAttributedStringListsTests.swift │ │ ├── NSAttributedStringParagraphRangeTests.swift │ │ ├── NSAttributedStringReplaceOcurrencesTests.swift │ │ ├── NSMutableAttributedStringParagraphProperty.swift │ │ ├── NSMutableAttributedStringReplaceOcurrencesTests.swift │ │ ├── NSRangeComparisonTests.swift │ │ ├── StringEndOfLineTests.swift │ │ ├── StringHTMLTests.swift │ │ ├── StringParagraphTests.swift │ │ ├── StringRangeConversionTests.swift │ │ ├── StringRangeMultibyteConversionTests.swift │ │ ├── UIColorHexParserTests.swift │ │ ├── UIImageResizeTests.swift │ │ ├── UIPasteboardHelpersTests.swift │ │ └── UIStackViewHelpersTests.swift │ ├── Formatters │ │ ├── BlockquoteFormatterTests.swift │ │ ├── BoldFormatterTests.swift │ │ ├── FontFormatterTests.swift │ │ ├── HeaderFormatterTests.swift │ │ ├── PreFormaterTests.swift │ │ └── TextListFormatterTests.swift │ ├── Importer │ │ ├── InAttributeConverterTests.swift │ │ └── InNodeConverterTests.swift │ ├── NSAttributedString │ │ └── Conversions │ │ │ ├── AttributedStringParserTests.swift │ │ │ └── AttributedStringSerializerTests.swift │ ├── Processor │ │ ├── HTMLProcessorTests.swift │ │ ├── HTMLTreeProcessorTests.swift │ │ └── ShortcodeAttributeSerializerTests.swift │ ├── Renderers │ │ ├── CommentAttachmentRendererTests.swift │ │ └── HTMLAttachmentRendererTests.swift │ ├── Resources │ │ ├── CommentAttachmentRender_2x.png.dat │ │ ├── CommentAttachmentRender_3x.png.dat │ │ ├── HTMLAttachmentRender_2x.png.dat │ │ ├── HTMLAttachmentRender_3x.png.dat │ │ ├── README.md │ │ ├── UIImageResizeImage1_2x.png.dat │ │ ├── UIImageResizeImage1_3x.png.dat │ │ ├── UIImageResizeImage2_2x.png.dat │ │ ├── UIImageResizeImage2_3x.png.dat │ │ ├── aztec.png │ │ └── content.html │ ├── TestingSupport │ │ ├── NSBundle+AztecTestsBundle.swift │ │ ├── TextViewStub.swift │ │ ├── TextViewStubAttachmentDelegate.swift │ │ ├── TextViewStubDelegate.swift │ │ └── UIKit+Extensions.swift │ └── TextKit │ │ ├── HTMLRepresentationTests.swift │ │ ├── HTMLStorageTests.swift │ │ ├── ParagraphStyleTests.swift │ │ ├── TextStorageTests.swift │ │ ├── TextViewTests.swift │ │ └── UnsupportedHTMLTests.swift ├── HTMLParserTests │ └── HTML │ │ ├── Conversions │ │ ├── CSSParserTests.swift │ │ ├── DefaultHTMLSerializerTests.swift │ │ └── HTMLParserTests.swift │ │ └── Nodes │ │ ├── ElementNodeTests.swift │ │ └── TextNodeTests.swift └── WordPressEditorTests │ ├── Extensions │ ├── ImageAttachmentWordPressTests.swift │ ├── MediaAttachmentWordPressTests.swift │ ├── StringRegExTests.swift │ └── VideoAttachmentWordPressTests.swift │ ├── Processors │ ├── EmbedURLProcessorTests.swift │ └── ShortcodeProcessorTests.swift │ ├── Resources │ ├── GutenpackAttachmentRender_2x.png │ └── GutenpackAttachmentRender_3x.png │ └── WordPressPlugin │ ├── Calypso │ ├── AutopRemovep │ │ ├── AutoPProcessorTests.swift │ │ └── RemovePProcessorTests.swift │ ├── CaptionShortcode │ │ ├── CaptionShortcodeInputProcessorTests.swift │ │ └── CaptionShortcodeOutputProcessorTests.swift │ └── GalleryShortcode │ │ ├── GalleryAttachmentToElementConverterTests.swift │ │ ├── GalleryElementConverterTests.swift │ │ ├── GalleryElementToTagConverterTests.swift │ │ └── GalleryShortcodeInputProcessorTests.swift │ ├── Gutenberg │ ├── GutenbergInputHTMLTreeProcessorTests.swift │ ├── GutenbergOutputHTMLTreeProcessorTests.swift │ ├── GutenblockTests.swift │ └── GutenpackAttachmentRendererTests.swift │ └── WordPressPluginTests.swift ├── WordPress-Aztec-iOS.podspec ├── WordPress-Editor-iOS.podspec ├── docs ├── index.html └── resources │ ├── application.css │ ├── application.js │ ├── bootstrap.min.css │ ├── bootstrap.min.js │ ├── file_cpp.png │ ├── file_objc.png │ ├── file_swift.png │ ├── jquery.min.js │ ├── main.css │ ├── main.js │ ├── opensans.css │ └── xcov_logo.png └── fastlane └── Fastfile /.buildkite/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.buildkite/pipeline.yml -------------------------------------------------------------------------------- /.buildkite/publish-aztec-pod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.buildkite/publish-aztec-pod.sh -------------------------------------------------------------------------------- /.buildkite/publish-editor-pod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.buildkite/publish-editor-pod.sh -------------------------------------------------------------------------------- /.buildkite/shared-pipeline-vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.buildkite/shared-pipeline-vars -------------------------------------------------------------------------------- /.bundle/config: -------------------------------------------------------------------------------- 1 | --- 2 | BUNDLE_PATH: "vendor/bundle" 3 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.github/ISSUE_TEMPLATE/custom.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.rubocop.yml -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/Aztec.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/Aztec.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/WordPress-AztecEditor-iOS-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/WordPress-AztecEditor-iOS-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/WordPressEditor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/WordPressEditor.xcscheme -------------------------------------------------------------------------------- /.xcode-version: -------------------------------------------------------------------------------- 1 | 16.4 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Documentation/Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Documentation/Architecture.md -------------------------------------------------------------------------------- /Documentation/ReleaseProcess.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Documentation/ReleaseProcess.md -------------------------------------------------------------------------------- /Documentation/resources/html_to_nsattributedstring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Documentation/resources/html_to_nsattributedstring.png -------------------------------------------------------------------------------- /Documentation/resources/nsattributedstring_to_html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Documentation/resources/nsattributedstring_to_html.png -------------------------------------------------------------------------------- /Example/AztecExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AztecExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AztecExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/AztecExample.xcodeproj/xcshareddata/xcschemes/AztecExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecExample.xcodeproj/xcshareddata/xcschemes/AztecExample.xcscheme -------------------------------------------------------------------------------- /Example/AztecUITests/AztecUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/AztecUITests.swift -------------------------------------------------------------------------------- /Example/AztecUITests/FormattingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/FormattingTests.swift -------------------------------------------------------------------------------- /Example/AztecUITests/HighPriorityIssuesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/HighPriorityIssuesTests.swift -------------------------------------------------------------------------------- /Example/AztecUITests/ImagesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/ImagesTests.swift -------------------------------------------------------------------------------- /Example/AztecUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/Info.plist -------------------------------------------------------------------------------- /Example/AztecUITests/LinkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/LinkTests.swift -------------------------------------------------------------------------------- /Example/AztecUITests/Logger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/Logger.swift -------------------------------------------------------------------------------- /Example/AztecUITests/Pages/BasePage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/Pages/BasePage.swift -------------------------------------------------------------------------------- /Example/AztecUITests/Pages/BlogsPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/Pages/BlogsPage.swift -------------------------------------------------------------------------------- /Example/AztecUITests/Pages/EditLinkPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/Pages/EditLinkPage.swift -------------------------------------------------------------------------------- /Example/AztecUITests/Pages/EditorPage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/Pages/EditorPage.swift -------------------------------------------------------------------------------- /Example/AztecUITests/XCTest+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/AztecUITests/XCTest+Extensions.swift -------------------------------------------------------------------------------- /Example/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/AttachmentDetailsViewController.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/AttachmentDetailsViewController.storyboard -------------------------------------------------------------------------------- /Example/Example/AttachmentDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/AttachmentDetailsViewController.swift -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/EditorDemoController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/EditorDemoController.swift -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /Example/Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/MediaInserter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/MediaInserter.swift -------------------------------------------------------------------------------- /Example/Example/SampleContent/SampleText.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/SampleText.rtf -------------------------------------------------------------------------------- /Example/Example/SampleContent/bigLists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/bigLists.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/captions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/captions.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/content.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/failedMedia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/failedMedia.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/gallery.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/gutenberg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/gutenberg.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/imagesOverlays.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/imagesOverlays.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/underline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/underline.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/video.html -------------------------------------------------------------------------------- /Example/Example/SampleContent/videoShortcodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/SampleContent/videoShortcodes.html -------------------------------------------------------------------------------- /Example/Example/TextViewAttachmentDelegateProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/TextViewAttachmentDelegateProvider.swift -------------------------------------------------------------------------------- /Example/Example/UIImage+SaveTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/UIImage+SaveTo.swift -------------------------------------------------------------------------------- /Example/Example/UnknownEditorViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/UnknownEditorViewController.swift -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/README.md -------------------------------------------------------------------------------- /RepoAssets/aztec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/RepoAssets/aztec.png -------------------------------------------------------------------------------- /Scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Scripts/build.sh -------------------------------------------------------------------------------- /Sources/Aztec/Assets/Media.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/Media.xcassets/Contents.json -------------------------------------------------------------------------------- /Sources/Aztec/Assets/Media.xcassets/image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/Media.xcassets/image.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Aztec/Assets/Media.xcassets/image.imageset/gridicons-image-dark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/Media.xcassets/image.imageset/gridicons-image-dark.pdf -------------------------------------------------------------------------------- /Sources/Aztec/Assets/Media.xcassets/image.imageset/gridicons-image.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/Media.xcassets/image.imageset/gridicons-image.pdf -------------------------------------------------------------------------------- /Sources/Aztec/Assets/Media.xcassets/play.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/Media.xcassets/play.imageset/Contents.json -------------------------------------------------------------------------------- /Sources/Aztec/Assets/Media.xcassets/play.imageset/gridicons-play.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/Media.xcassets/play.imageset/gridicons-play.pdf -------------------------------------------------------------------------------- /Sources/Aztec/Assets/html_colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Assets/html_colors.json -------------------------------------------------------------------------------- /Sources/Aztec/Aztec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Aztec.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Constants/Metrics.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Constants/Metrics.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Base/ElementAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Base/ElementAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Base/MainAttributesConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Base/MainAttributesConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/BoldElementAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/BoldElementAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/ForegroundColorElementAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/ForegroundColorElementAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/ItalicElementAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/ItalicElementAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/UnderlineElementAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/AttributesToStringAttributes/Implementations/UnderlineElementAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Base/AttachmentElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Base/AttachmentElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Base/ElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Base/ElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Base/FormatterElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Base/FormatterElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/BRElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/BRElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/CiteElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/CiteElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/FigcaptionElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/FigcaptionElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/FigureElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/FigureElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/GenericElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/GenericElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/HRElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/HRElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/ImageElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/ImageElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/LIElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/LIElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/VideoElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/ElementsToAttributedString/Implementations/VideoElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Base/ConditionalStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Base/ConditionalStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Base/StringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Base/StringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/ConditionalConverters/ConditionalItalicStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/ConditionalConverters/ConditionalItalicStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/BoldStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/BoldStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/CiteStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/CiteStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/ItalicStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/ItalicStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/MarkStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/MarkStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/SubscriptStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/SubscriptStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/SuperscriptStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/SuperscriptStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/UnderlineStringAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Implementations/UnderlineStringAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Utility/HTMLStyleToggler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Converters/StringAttributesToAttributes/Utility/HTMLStyleToggler.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/EditorView/EditorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/EditorView/EditorView.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/Array+Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/Array+Attribute.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/Array+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/Array+Helpers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/Array+ShortcodeAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/Array+ShortcodeAttribute.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/Dictionary+AttributedStringKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/Dictionary+AttributedStringKey.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/DocumentReadingOptionKey+Swift4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/DocumentReadingOptionKey+Swift4.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/DocumentType+Swift4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/DocumentType+Swift4.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+Analyzers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+Analyzers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+Archive.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+Archive.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+Attachments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+Attachments.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+CharacterName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+CharacterName.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+FontTraits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+FontTraits.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+Lists.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+Lists.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+ParagraphRange.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+ParagraphRange.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedString+ReplaceOcurrences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedString+ReplaceOcurrences.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedStringKey+Aztec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedStringKey+Aztec.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSAttributedStringKey+Conversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSAttributedStringKey+Conversion.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSBundle+AztecBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSBundle+AztecBundle.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSLayoutManager+Attachments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSLayoutManager+Attachments.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSMutableAttributedString+ParagraphProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSMutableAttributedString+ParagraphProperty.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSMutableAttributedString+ReplaceAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSMutableAttributedString+ReplaceAttributes.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSMutableAttributedString+ReplaceOcurrences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSMutableAttributedString+ReplaceOcurrences.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSRange+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSRange+Helpers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/NSTextingResult+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/NSTextingResult+Helpers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/String+EndOfLine.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/String+EndOfLine.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/String+Paragraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/String+Paragraph.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/String+RangeConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/String+RangeConversion.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/StringUTF16+RangeConversion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/StringUTF16+RangeConversion.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UIColor+Parsers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UIColor+Parsers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UIFont+Emoji.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UIFont+Emoji.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UIFont+Traits.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UIFont+Traits.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UIImage+Resize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UIImage+Resize.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UILayoutPriority+Swift4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UILayoutPriority+Swift4.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UIPasteboard+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UIPasteboard+Helpers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UIStackView+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UIStackView+Helpers.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UITextView+Delegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UITextView+Delegate.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Extensions/UITextView+Undoable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Extensions/UITextView+Undoable.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Base/AttributeFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Base/AttributeFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Base/FontFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Base/FontFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Base/ParagraphAttributeFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Base/ParagraphAttributeFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Base/StandardAttributeFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Base/StandardAttributeFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/BlockquoteFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/BlockquoteFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/BoldFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/BoldFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/BoldWithShadowForHeadingFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/BoldWithShadowForHeadingFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/CiteFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/CiteFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/CodeFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/CodeFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/ColorFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/ColorFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/FigcaptionFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/FigcaptionFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/FigureFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/FigureFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/HTMLDivFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/HTMLDivFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/HTMLParagraphFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/HTMLParagraphFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/HeaderFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/HeaderFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/ItalicFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/ItalicFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/LiFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/LiFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/LinkFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/LinkFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/MarkFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/MarkFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/PreFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/PreFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/StrikethroughFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/StrikethroughFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/SubscriptFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/SubscriptFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/SuperscriptFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/SuperscriptFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/TextListFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/TextListFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Formatters/Implementations/UnderlineFormatter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Formatters/Implementations/UnderlineFormatter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/GUI/Assets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/GUI/Assets.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/GUI/FormatBar/FormatBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/GUI/FormatBar/FormatBar.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/GUI/FormatBar/FormatBarDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/GUI/FormatBar/FormatBarDelegate.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/GUI/FormatBar/FormatBarItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/GUI/FormatBar/FormatBarItem.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/GUI/FormatBar/FormattingIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/GUI/FormatBar/FormattingIdentifier.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Attributes/HTMLRepresentation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Attributes/HTMLRepresentation.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Attributes/UnsupportedHTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Attributes/UnsupportedHTML.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/Base/AttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/Base/AttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/CommentAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/CommentAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/HTMLAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/HTMLAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/ImageAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/ImageAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/LineAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/LineAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/VideoAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttachmentToElementConverter/VideoAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttributedStringParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttributedStringParser.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/AttributedStringSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/AttributedStringSerializer.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/HTMLConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/HTMLConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/NSAttributedString/Conversions/ParagraphPropertyConverters/Base/ParagraphPropertyConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/NSAttributedString/Conversions/ParagraphPropertyConverters/Base/ParagraphPropertyConverter.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Plugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Plugin/Plugin.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Plugin/PluginInputCustomizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Plugin/PluginInputCustomizer.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Plugin/PluginManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Plugin/PluginManager.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Plugin/PluginOutputCustomizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Plugin/PluginOutputCustomizer.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/HTMLProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/HTMLProcessor.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/HTMLTreeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/HTMLTreeProcessor.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/PipelineProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/PipelineProcessor.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/Processor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/Processor.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/RegexProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/RegexProcessor.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/ShortcodeAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/ShortcodeAttribute.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/ShortcodeAttributeParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/ShortcodeAttributeParser.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Processor/ShortcodeAttributeSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Processor/ShortcodeAttributeSerializer.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Renderers/CommentAttachmentRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Renderers/CommentAttachmentRenderer.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/Renderers/HTMLAttachmentRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/Renderers/HTMLAttachmentRenderer.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ColorProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ColorProvider.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/CommentAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/CommentAttachment.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/Configuration.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/FontProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/FontProvider.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/HTMLAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/HTMLAttachment.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/HTMLStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/HTMLStorage.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ImageAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ImageAttachment.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/LayoutManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/LayoutManager.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/LineAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/LineAttachment.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/MediaAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/MediaAttachment.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/Blockquote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/Blockquote.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/Figcaption.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/Figcaption.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/Figure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/Figure.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLDiv.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLDiv.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLLi.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLLi.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLParagraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLParagraph.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLPre.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/HTMLPre.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/Header.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/Header.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/ParagraphProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/ParagraphProperty.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphProperty/TextList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphProperty/TextList.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/ParagraphStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/ParagraphStyle.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/RenderableAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/RenderableAttachment.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/TextStorage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/TextStorage.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/TextView.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/TextViewPasteboardDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/TextViewPasteboardDelegate.swift -------------------------------------------------------------------------------- /Sources/Aztec/Classes/TextKit/VideoAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/Aztec/Classes/TextKit/VideoAttachment.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/In/CSSParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/In/CSSParser.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/In/HTMLParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/In/HTMLParser.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/In/InAttributeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/In/InAttributeConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/In/InAttributesConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/In/InAttributesConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/In/InNodeConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/In/InNodeConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/In/InNodesConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/In/InNodesConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Converters/Out/HTMLSerializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Converters/Out/HTMLSerializer.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/Attribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/Attribute.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/AttributeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/AttributeType.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/CSSAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/CSSAttribute.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/CSSAttributeType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/CSSAttributeType.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/CommentNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/CommentNode.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/Element.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/Element.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/ElementNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/ElementNode.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/Node.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/Node.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Data/TextNode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Data/TextNode.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Logic/CSS/BoldCSSAttributeMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Logic/CSS/BoldCSSAttributeMatcher.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Logic/CSS/CSSAttributeMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Logic/CSS/CSSAttributeMatcher.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Logic/CSS/ForegroundColorCSSAttributeMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Logic/CSS/ForegroundColorCSSAttributeMatcher.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Logic/CSS/ItalicCSSAttributeMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Logic/CSS/ItalicCSSAttributeMatcher.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/DOM/Logic/CSS/UnderlineCSSAttributeMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/DOM/Logic/CSS/UnderlineCSSAttributeMatcher.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/ElementsToHTML/Base/ElementToStringConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/ElementsToHTML/Base/ElementToStringConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/ElementsToHTML/Implementations/GenericElementToTagConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/ElementsToHTML/Implementations/GenericElementToTagConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Extensions/Character+Name.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Extensions/Character+Name.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Extensions/String+CharacterName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Extensions/String+CharacterName.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/Extensions/String+HTML.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/Extensions/String+HTML.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/HTMLToElements/CLinkedListToArrayConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/HTMLToElements/CLinkedListToArrayConverter.swift -------------------------------------------------------------------------------- /Sources/HTMLParser/HTMLToElements/Converter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/HTMLParser/HTMLToElements/Converter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Assets/aztec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Assets/aztec.png -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Extensions/ImageAttachment+WordPress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Extensions/ImageAttachment+WordPress.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Extensions/MediaAttachment+WordPress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Extensions/MediaAttachment+WordPress.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Extensions/String+RegEx.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Extensions/String+RegEx.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Extensions/VideoAttachment+WordPress.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Extensions/VideoAttachment+WordPress.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/AutopRemovep/AutoPProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/AutopRemovep/AutoPProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/AutopRemovep/RemovePProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/AutopRemovep/RemovePProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeInputProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeInputProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeOutputProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeOutputProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/Embeds/WordPressPasteboardDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/Embeds/WordPressPasteboardDelegate.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryAttachment.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementConverter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementToTagConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementToTagConverter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryShortcodeInputProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GalleryShortcodeInputProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GallerySupportedAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/GalleryShortcode/GallerySupportedAttribute.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/VideoShortcode/VideoShortcodeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Calypso/VideoShortcode/VideoShortcodeProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/CommentNode+Gutenberg.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/CommentNode+Gutenberg.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergAttributeDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergAttributeDecoder.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergAttributeEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergAttributeEncoder.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergAttributeNames.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergAttributeNames.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergInputHTMLTreeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergInputHTMLTreeProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergOutputHTMLTreeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenbergOutputHTMLTreeProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/Gutenblock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/Gutenblock.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenblockConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenblockConverter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackAttachment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackAttachment.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackAttachmentRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackAttachmentRenderer.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackAttachmentToElementConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackAttachmentToElementConverter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackConverter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/Gutenberg/GutenpackConverter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/WordPressInputCustomizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/WordPressInputCustomizer.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/WordPressOutputCustomizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/WordPressOutputCustomizer.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/WordPressPlugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Plugins/WordPressPlugin/WordPressPlugin.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Processors/EmbedURLProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Processors/EmbedURLProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Processors/ShortcodeProcessor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Processors/ShortcodeProcessor.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/Renderers/SpecialTagAttachmentRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/Renderers/SpecialTagAttachmentRenderer.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/ViewControllers/OptionsTableViewController/OptionsTablePresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/ViewControllers/OptionsTableViewController/OptionsTablePresenter.swift -------------------------------------------------------------------------------- /Sources/WordPressEditor/Classes/ViewControllers/OptionsTableViewController/OptionsTableViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Sources/WordPressEditor/Classes/ViewControllers/OptionsTableViewController/OptionsTableViewController.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Aztec.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Aztec.xctestplan -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/AttributesToStringAttributes/BoldElementAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/AttributesToStringAttributes/BoldElementAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/AttributesToStringAttributes/ItalicElementAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/AttributesToStringAttributes/ItalicElementAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/AttributesToStringAttributes/UnderlineElementAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/AttributesToStringAttributes/UnderlineElementAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/ElementToAttributedString/GenericElementConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/ElementToAttributedString/GenericElementConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/StringAttributesToAttributes/BoldStringAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/StringAttributesToAttributes/BoldStringAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/StringAttributesToAttributes/ItalicStringAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/StringAttributesToAttributes/ItalicStringAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Converters/StringAttributesToAttributes/UnderlineStringAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Converters/StringAttributesToAttributes/UnderlineStringAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/EditorView/EditorViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/EditorView/EditorViewTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/ArrayHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/ArrayHelperTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSAttributedStringAnalyzerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSAttributedStringAnalyzerTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSAttributedStringAttachmentsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSAttributedStringAttachmentsTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSAttributedStringKeyHelperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSAttributedStringKeyHelperTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSAttributedStringListsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSAttributedStringListsTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSAttributedStringParagraphRangeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSAttributedStringParagraphRangeTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSAttributedStringReplaceOcurrencesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSAttributedStringReplaceOcurrencesTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSMutableAttributedStringParagraphProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSMutableAttributedStringParagraphProperty.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSMutableAttributedStringReplaceOcurrencesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSMutableAttributedStringReplaceOcurrencesTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/NSRangeComparisonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/NSRangeComparisonTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/StringEndOfLineTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/StringEndOfLineTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/StringHTMLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/StringHTMLTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/StringParagraphTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/StringParagraphTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/StringRangeConversionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/StringRangeConversionTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/StringRangeMultibyteConversionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/StringRangeMultibyteConversionTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/UIColorHexParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/UIColorHexParserTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/UIImageResizeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/UIImageResizeTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/UIPasteboardHelpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/UIPasteboardHelpersTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Extensions/UIStackViewHelpersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Extensions/UIStackViewHelpersTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Formatters/BlockquoteFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Formatters/BlockquoteFormatterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Formatters/BoldFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Formatters/BoldFormatterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Formatters/FontFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Formatters/FontFormatterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Formatters/HeaderFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Formatters/HeaderFormatterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Formatters/PreFormaterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Formatters/PreFormaterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Formatters/TextListFormatterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Formatters/TextListFormatterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Importer/InAttributeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Importer/InAttributeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Importer/InNodeConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Importer/InNodeConverterTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/NSAttributedString/Conversions/AttributedStringParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/NSAttributedString/Conversions/AttributedStringParserTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/NSAttributedString/Conversions/AttributedStringSerializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/NSAttributedString/Conversions/AttributedStringSerializerTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Processor/HTMLProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Processor/HTMLProcessorTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Processor/HTMLTreeProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Processor/HTMLTreeProcessorTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Processor/ShortcodeAttributeSerializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Processor/ShortcodeAttributeSerializerTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Renderers/CommentAttachmentRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Renderers/CommentAttachmentRendererTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Renderers/HTMLAttachmentRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Renderers/HTMLAttachmentRendererTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/CommentAttachmentRender_2x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/CommentAttachmentRender_2x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/CommentAttachmentRender_3x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/CommentAttachmentRender_3x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/HTMLAttachmentRender_2x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/HTMLAttachmentRender_2x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/HTMLAttachmentRender_3x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/HTMLAttachmentRender_3x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/README.md -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/UIImageResizeImage1_2x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/UIImageResizeImage1_2x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/UIImageResizeImage1_3x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/UIImageResizeImage1_3x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/UIImageResizeImage2_2x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/UIImageResizeImage2_2x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/UIImageResizeImage2_3x.png.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/UIImageResizeImage2_3x.png.dat -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/aztec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/aztec.png -------------------------------------------------------------------------------- /Tests/AztecTests/Resources/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/Resources/content.html -------------------------------------------------------------------------------- /Tests/AztecTests/TestingSupport/NSBundle+AztecTestsBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TestingSupport/NSBundle+AztecTestsBundle.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TestingSupport/TextViewStub.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TestingSupport/TextViewStub.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TestingSupport/TextViewStubAttachmentDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TestingSupport/TextViewStubAttachmentDelegate.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TestingSupport/TextViewStubDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TestingSupport/TextViewStubDelegate.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TestingSupport/UIKit+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TestingSupport/UIKit+Extensions.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TextKit/HTMLRepresentationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TextKit/HTMLRepresentationTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TextKit/HTMLStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TextKit/HTMLStorageTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TextKit/ParagraphStyleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TextKit/ParagraphStyleTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TextKit/TextStorageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TextKit/TextStorageTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TextKit/TextViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TextKit/TextViewTests.swift -------------------------------------------------------------------------------- /Tests/AztecTests/TextKit/UnsupportedHTMLTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/AztecTests/TextKit/UnsupportedHTMLTests.swift -------------------------------------------------------------------------------- /Tests/HTMLParserTests/HTML/Conversions/CSSParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/HTMLParserTests/HTML/Conversions/CSSParserTests.swift -------------------------------------------------------------------------------- /Tests/HTMLParserTests/HTML/Conversions/DefaultHTMLSerializerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/HTMLParserTests/HTML/Conversions/DefaultHTMLSerializerTests.swift -------------------------------------------------------------------------------- /Tests/HTMLParserTests/HTML/Conversions/HTMLParserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/HTMLParserTests/HTML/Conversions/HTMLParserTests.swift -------------------------------------------------------------------------------- /Tests/HTMLParserTests/HTML/Nodes/ElementNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/HTMLParserTests/HTML/Nodes/ElementNodeTests.swift -------------------------------------------------------------------------------- /Tests/HTMLParserTests/HTML/Nodes/TextNodeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/HTMLParserTests/HTML/Nodes/TextNodeTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Extensions/ImageAttachmentWordPressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Extensions/ImageAttachmentWordPressTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Extensions/MediaAttachmentWordPressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Extensions/MediaAttachmentWordPressTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Extensions/StringRegExTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Extensions/StringRegExTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Extensions/VideoAttachmentWordPressTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Extensions/VideoAttachmentWordPressTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Processors/EmbedURLProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Processors/EmbedURLProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Processors/ShortcodeProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Processors/ShortcodeProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Resources/GutenpackAttachmentRender_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Resources/GutenpackAttachmentRender_2x.png -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/Resources/GutenpackAttachmentRender_3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/Resources/GutenpackAttachmentRender_3x.png -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/AutopRemovep/AutoPProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/AutopRemovep/AutoPProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/AutopRemovep/RemovePProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/AutopRemovep/RemovePProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeInputProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeInputProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeOutputProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/CaptionShortcode/CaptionShortcodeOutputProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryAttachmentToElementConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryAttachmentToElementConverterTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementConverterTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementToTagConverterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryElementToTagConverterTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryShortcodeInputProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Calypso/GalleryShortcode/GalleryShortcodeInputProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenbergInputHTMLTreeProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenbergInputHTMLTreeProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenbergOutputHTMLTreeProcessorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenbergOutputHTMLTreeProcessorTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenblockTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenblockTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenpackAttachmentRendererTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/Gutenberg/GutenpackAttachmentRendererTests.swift -------------------------------------------------------------------------------- /Tests/WordPressEditorTests/WordPressPlugin/WordPressPluginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/Tests/WordPressEditorTests/WordPressPlugin/WordPressPluginTests.swift -------------------------------------------------------------------------------- /WordPress-Aztec-iOS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/WordPress-Aztec-iOS.podspec -------------------------------------------------------------------------------- /WordPress-Editor-iOS.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/WordPress-Editor-iOS.podspec -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/resources/application.css: -------------------------------------------------------------------------------- 1 | //= require_self 2 | -------------------------------------------------------------------------------- /docs/resources/application.js: -------------------------------------------------------------------------------- 1 | //= require_self 2 | -------------------------------------------------------------------------------- /docs/resources/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/bootstrap.min.css -------------------------------------------------------------------------------- /docs/resources/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/bootstrap.min.js -------------------------------------------------------------------------------- /docs/resources/file_cpp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/file_cpp.png -------------------------------------------------------------------------------- /docs/resources/file_objc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/file_objc.png -------------------------------------------------------------------------------- /docs/resources/file_swift.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/file_swift.png -------------------------------------------------------------------------------- /docs/resources/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/jquery.min.js -------------------------------------------------------------------------------- /docs/resources/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/main.css -------------------------------------------------------------------------------- /docs/resources/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/main.js -------------------------------------------------------------------------------- /docs/resources/opensans.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/opensans.css -------------------------------------------------------------------------------- /docs/resources/xcov_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/docs/resources/xcov_logo.png -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wordpress-mobile/AztecEditor-iOS/HEAD/fastlane/Fastfile --------------------------------------------------------------------------------