├── .browserslistrc ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.json ├── composer.json ├── composer.lock ├── dist ├── css │ ├── styles-bs.css │ ├── styles-bs.min.css │ ├── styles.css │ ├── styles.min.css │ ├── variables.css │ └── variables.min.css └── js │ ├── dispatchEvent.js │ ├── dispatchEvent.js.map │ ├── fetchData.js │ ├── fetchData.js.map │ ├── getPostData.js │ ├── getPostData.js.map │ ├── processPosts.js │ ├── processPosts.js.map │ ├── ready.js │ ├── ready.js.map │ ├── renderPost.js │ ├── renderPost.js.map │ ├── scripts.js │ └── scripts.js.map ├── gulpfile.js ├── images ├── assets │ ├── banner-1544x500.png │ ├── banner-772x250.png │ ├── icon-128x128.png │ ├── icon-256x256.png │ ├── screenshot-1.png │ └── screenshot-2.png ├── blog │ ├── deleted-posts │ │ ├── cropped │ │ │ ├── hide.png │ │ │ ├── mark-as-deleted.png │ │ │ └── remove-account-information.png │ │ └── full │ │ │ ├── hide.png │ │ │ ├── mark-as-deleted.png │ │ │ └── remove-account-information.png │ └── fediverse-embeds-main-thumbnail.png ├── images │ ├── blank.png │ └── broken-image.png ├── instructions │ ├── add-html-iframe.png │ └── mastodon-embed.png ├── performance │ ├── full │ │ ├── mastodon-performance-iframe-desktop.png │ │ ├── mastodon-performance-iframe-mobile.png │ │ ├── mastodon-performance-plugin-desktop.png │ │ └── mastodon-performance-plugin-mobile.png │ ├── mastodon-performance-iframe-desktop.png │ ├── mastodon-performance-iframe-mobile.png │ ├── mastodon-performance-plugin-desktop.png │ └── mastodon-performance-plugin-mobile.png └── screenshots │ ├── dark-light-theme.png │ ├── main.png │ ├── post-metrics.png │ └── psd │ ├── gradient.png │ ├── main.psd │ └── post-metrics.psd ├── includes ├── Database.php ├── Embed_Posts.php ├── Enqueue_Assets.php ├── Helpers.php ├── Media_Proxy.php ├── Settings.php ├── Site_Info.php └── polyfills.php ├── index.php ├── package.json ├── readme.txt ├── src └── frontend │ ├── scripts │ ├── dispatchEvent.js │ ├── fetchData.js │ ├── getPostData.js │ ├── processPosts.js │ ├── ready.js │ ├── renderPost.js │ └── scripts.js │ └── styles │ ├── bootstrap │ ├── _accordion.scss │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _containers.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _helpers.scss │ ├── _images.scss │ ├── _list-group.scss │ ├── _maps.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _offcanvas.scss │ ├── _pagination.scss │ ├── _placeholders.scss │ ├── _popover.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables-dark.scss │ ├── _variables.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap-utilities.scss │ ├── bootstrap.scss │ ├── forms │ │ ├── _floating-labels.scss │ │ ├── _form-check.scss │ │ ├── _form-control.scss │ │ ├── _form-range.scss │ │ ├── _form-select.scss │ │ ├── _form-text.scss │ │ ├── _input-group.scss │ │ ├── _labels.scss │ │ └── _validation.scss │ ├── helpers │ │ ├── _clearfix.scss │ │ ├── _color-bg.scss │ │ ├── _colored-links.scss │ │ ├── _focus-ring.scss │ │ ├── _icon-link.scss │ │ ├── _position.scss │ │ ├── _ratio.scss │ │ ├── _stacks.scss │ │ ├── _stretched-link.scss │ │ ├── _text-truncation.scss │ │ ├── _visually-hidden.scss │ │ └── _vr.scss │ ├── mixins │ │ ├── _alert.scss │ │ ├── _backdrop.scss │ │ ├── _banner.scss │ │ ├── _border-radius.scss │ │ ├── _box-shadow.scss │ │ ├── _breakpoints.scss │ │ ├── _buttons.scss │ │ ├── _caret.scss │ │ ├── _clearfix.scss │ │ ├── _color-mode.scss │ │ ├── _color-scheme.scss │ │ ├── _container.scss │ │ ├── _deprecate.scss │ │ ├── _forms.scss │ │ ├── _gradients.scss │ │ ├── _grid.scss │ │ ├── _image.scss │ │ ├── _list-group.scss │ │ ├── _lists.scss │ │ ├── _pagination.scss │ │ ├── _reset-text.scss │ │ ├── _resize.scss │ │ ├── _table-variants.scss │ │ ├── _text-truncate.scss │ │ ├── _transition.scss │ │ ├── _utilities.scss │ │ └── _visually-hidden.scss │ ├── tests │ │ ├── jasmine.js │ │ ├── mixins │ │ │ ├── _color-modes.test.scss │ │ │ ├── _media-query-color-mode-full.test.scss │ │ │ └── _utilities.test.scss │ │ ├── sass-true │ │ │ ├── register.js │ │ │ └── runner.js │ │ └── utilities │ │ │ └── _api.test.scss │ ├── utilities │ │ └── _api.scss │ └── vendor │ │ └── _rfs.scss │ ├── styles-bs.scss │ ├── styles.scss │ └── variables.scss ├── tests └── .jshintrc └── vendor ├── autoload.php ├── composer ├── ClassLoader.php ├── InstalledVersions.php ├── LICENSE ├── autoload_classmap.php ├── autoload_namespaces.php ├── autoload_psr4.php ├── autoload_real.php ├── autoload_static.php ├── installed.json ├── installed.php └── platform_check.php └── simplehtmldom └── simplehtmldom ├── CHANGELOG.md ├── Debug.php ├── HtmlDocument.php ├── HtmlNode.php ├── HtmlWeb.php ├── LICENSE ├── README.md ├── composer.json ├── constants.php ├── example ├── example_advanced_selector.php ├── example_basic_selector.php ├── example_callback.php ├── example_extract_html.php ├── example_modify_contents.php └── scraping │ ├── example_scraping_digg.php │ ├── example_scraping_imdb.php │ └── example_scraping_slashdot.php ├── manual ├── README.md ├── custom_theme │ └── main.html ├── docs │ ├── api │ │ ├── Debug │ │ │ ├── disable.md │ │ │ ├── enable.md │ │ │ ├── index.md │ │ │ ├── log.md │ │ │ ├── log_once.md │ │ │ └── setDebugHandler.md │ │ ├── HtmlDocument │ │ │ ├── __call.md │ │ │ ├── __construct.md │ │ │ ├── __debugInfo.md │ │ │ ├── __destruct.md │ │ │ ├── __get.md │ │ │ ├── __toString.md │ │ │ ├── as_text_node.md │ │ │ ├── childNodes.md │ │ │ ├── copy_skip.md │ │ │ ├── copy_until.md │ │ │ ├── copy_until_char.md │ │ │ ├── createElement.md │ │ │ ├── createTextNode.md │ │ │ ├── decode.md │ │ │ ├── dump.md │ │ │ ├── expect.md │ │ │ ├── find.md │ │ │ ├── firstChild.md │ │ │ ├── getElementById.md │ │ │ ├── getElementByTagName.md │ │ │ ├── getElementsById.md │ │ │ ├── getElementsByTagName.md │ │ │ ├── index.md │ │ │ ├── lastChild.md │ │ │ ├── link_nodes.md │ │ │ ├── load.md │ │ │ ├── loadFile.md │ │ │ ├── parse.md │ │ │ ├── parse_attr.md │ │ │ ├── parse_charset.md │ │ │ ├── prepare.md │ │ │ ├── read_tag.md │ │ │ ├── remove_callback.md │ │ │ ├── remove_noise.md │ │ │ ├── restore_noise.md │ │ │ ├── save.md │ │ │ ├── search_noise.md │ │ │ ├── set_callback.md │ │ │ └── skip.md │ │ ├── HtmlNode │ │ │ ├── __call.md │ │ │ ├── __construct.md │ │ │ ├── __debugInfo.md │ │ │ ├── __destruct.md │ │ │ ├── __get.md │ │ │ ├── __isset.md │ │ │ ├── __set.md │ │ │ ├── __toString.md │ │ │ ├── __unset.md │ │ │ ├── addClass.md │ │ │ ├── appendChild.md │ │ │ ├── childNodes.md │ │ │ ├── clear.md │ │ │ ├── convert_text.md │ │ │ ├── definitions.md │ │ │ ├── dump.md │ │ │ ├── dump_node.md │ │ │ ├── expect.md │ │ │ ├── find.md │ │ │ ├── find_ancestor_tag.md │ │ │ ├── firstChild.md │ │ │ ├── getAllAttributes.md │ │ │ ├── getAttribute.md │ │ │ ├── getElementById.md │ │ │ ├── getElementByTagName.md │ │ │ ├── getElementsById.md │ │ │ ├── getElementsByTagName.md │ │ │ ├── get_display_size.md │ │ │ ├── hasAttribute.md │ │ │ ├── hasChildNodes.md │ │ │ ├── hasClass.md │ │ │ ├── index.md │ │ │ ├── innertext.md │ │ │ ├── is_block_element.md │ │ │ ├── is_inline_element.md │ │ │ ├── is_utf8.md │ │ │ ├── lastChild.md │ │ │ ├── makeup.md │ │ │ ├── match.md │ │ │ ├── nextSibling.md │ │ │ ├── nodeName.md │ │ │ ├── outertext.md │ │ │ ├── parent.md │ │ │ ├── parentNode.md │ │ │ ├── parse_selector.md │ │ │ ├── previousSibling.md │ │ │ ├── remove.md │ │ │ ├── removeAttribute.md │ │ │ ├── removeChild.md │ │ │ ├── removeClass.md │ │ │ ├── save.md │ │ │ ├── seek.md │ │ │ ├── setAttribute.md │ │ │ ├── text.md │ │ │ └── xmltext.md │ │ └── constants.md │ ├── extra.css │ ├── faq │ │ └── 0001.md │ ├── index.md │ ├── manual │ │ ├── accessing-element-attributes.md │ │ ├── adding-nodes.md │ │ ├── creating-dom-objects.md │ │ ├── customizing-parsing-behavior.md │ │ ├── finding-html-elements.md │ │ ├── saving-dom-objects.md │ │ └── traversing-dom-tree.md │ ├── quick-start.md │ └── requirements.md └── mkdocs.yml └── simple_html_dom.php /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 0.25% 2 | not dead 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | media 3 | profile_images 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/babel.config.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/composer.lock -------------------------------------------------------------------------------- /dist/css/styles-bs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/css/styles-bs.css -------------------------------------------------------------------------------- /dist/css/styles-bs.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/css/styles-bs.min.css -------------------------------------------------------------------------------- /dist/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/css/styles.css -------------------------------------------------------------------------------- /dist/css/styles.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/css/styles.min.css -------------------------------------------------------------------------------- /dist/css/variables.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/css/variables.min.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist/js/dispatchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/dispatchEvent.js -------------------------------------------------------------------------------- /dist/js/dispatchEvent.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/dispatchEvent.js.map -------------------------------------------------------------------------------- /dist/js/fetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/fetchData.js -------------------------------------------------------------------------------- /dist/js/fetchData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/fetchData.js.map -------------------------------------------------------------------------------- /dist/js/getPostData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/getPostData.js -------------------------------------------------------------------------------- /dist/js/getPostData.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/getPostData.js.map -------------------------------------------------------------------------------- /dist/js/processPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/processPosts.js -------------------------------------------------------------------------------- /dist/js/processPosts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/processPosts.js.map -------------------------------------------------------------------------------- /dist/js/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/ready.js -------------------------------------------------------------------------------- /dist/js/ready.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/ready.js.map -------------------------------------------------------------------------------- /dist/js/renderPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/renderPost.js -------------------------------------------------------------------------------- /dist/js/renderPost.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/renderPost.js.map -------------------------------------------------------------------------------- /dist/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/scripts.js -------------------------------------------------------------------------------- /dist/js/scripts.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/dist/js/scripts.js.map -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/assets/banner-1544x500.png -------------------------------------------------------------------------------- /images/assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/assets/banner-772x250.png -------------------------------------------------------------------------------- /images/assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/assets/icon-128x128.png -------------------------------------------------------------------------------- /images/assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/assets/icon-256x256.png -------------------------------------------------------------------------------- /images/assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/assets/screenshot-1.png -------------------------------------------------------------------------------- /images/assets/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/assets/screenshot-2.png -------------------------------------------------------------------------------- /images/blog/deleted-posts/cropped/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/deleted-posts/cropped/hide.png -------------------------------------------------------------------------------- /images/blog/deleted-posts/cropped/mark-as-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/deleted-posts/cropped/mark-as-deleted.png -------------------------------------------------------------------------------- /images/blog/deleted-posts/cropped/remove-account-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/deleted-posts/cropped/remove-account-information.png -------------------------------------------------------------------------------- /images/blog/deleted-posts/full/hide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/deleted-posts/full/hide.png -------------------------------------------------------------------------------- /images/blog/deleted-posts/full/mark-as-deleted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/deleted-posts/full/mark-as-deleted.png -------------------------------------------------------------------------------- /images/blog/deleted-posts/full/remove-account-information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/deleted-posts/full/remove-account-information.png -------------------------------------------------------------------------------- /images/blog/fediverse-embeds-main-thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/blog/fediverse-embeds-main-thumbnail.png -------------------------------------------------------------------------------- /images/images/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/images/blank.png -------------------------------------------------------------------------------- /images/images/broken-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/images/broken-image.png -------------------------------------------------------------------------------- /images/instructions/add-html-iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/instructions/add-html-iframe.png -------------------------------------------------------------------------------- /images/instructions/mastodon-embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/instructions/mastodon-embed.png -------------------------------------------------------------------------------- /images/performance/full/mastodon-performance-iframe-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/full/mastodon-performance-iframe-desktop.png -------------------------------------------------------------------------------- /images/performance/full/mastodon-performance-iframe-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/full/mastodon-performance-iframe-mobile.png -------------------------------------------------------------------------------- /images/performance/full/mastodon-performance-plugin-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/full/mastodon-performance-plugin-desktop.png -------------------------------------------------------------------------------- /images/performance/full/mastodon-performance-plugin-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/full/mastodon-performance-plugin-mobile.png -------------------------------------------------------------------------------- /images/performance/mastodon-performance-iframe-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/mastodon-performance-iframe-desktop.png -------------------------------------------------------------------------------- /images/performance/mastodon-performance-iframe-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/mastodon-performance-iframe-mobile.png -------------------------------------------------------------------------------- /images/performance/mastodon-performance-plugin-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/mastodon-performance-plugin-desktop.png -------------------------------------------------------------------------------- /images/performance/mastodon-performance-plugin-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/performance/mastodon-performance-plugin-mobile.png -------------------------------------------------------------------------------- /images/screenshots/dark-light-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/screenshots/dark-light-theme.png -------------------------------------------------------------------------------- /images/screenshots/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/screenshots/main.png -------------------------------------------------------------------------------- /images/screenshots/post-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/screenshots/post-metrics.png -------------------------------------------------------------------------------- /images/screenshots/psd/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/screenshots/psd/gradient.png -------------------------------------------------------------------------------- /images/screenshots/psd/main.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/screenshots/psd/main.psd -------------------------------------------------------------------------------- /images/screenshots/psd/post-metrics.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/images/screenshots/psd/post-metrics.psd -------------------------------------------------------------------------------- /includes/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Database.php -------------------------------------------------------------------------------- /includes/Embed_Posts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Embed_Posts.php -------------------------------------------------------------------------------- /includes/Enqueue_Assets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Enqueue_Assets.php -------------------------------------------------------------------------------- /includes/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Helpers.php -------------------------------------------------------------------------------- /includes/Media_Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Media_Proxy.php -------------------------------------------------------------------------------- /includes/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Settings.php -------------------------------------------------------------------------------- /includes/Site_Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/Site_Info.php -------------------------------------------------------------------------------- /includes/polyfills.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/includes/polyfills.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/index.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/package.json -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/readme.txt -------------------------------------------------------------------------------- /src/frontend/scripts/dispatchEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/dispatchEvent.js -------------------------------------------------------------------------------- /src/frontend/scripts/fetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/fetchData.js -------------------------------------------------------------------------------- /src/frontend/scripts/getPostData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/getPostData.js -------------------------------------------------------------------------------- /src/frontend/scripts/processPosts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/processPosts.js -------------------------------------------------------------------------------- /src/frontend/scripts/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/ready.js -------------------------------------------------------------------------------- /src/frontend/scripts/renderPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/renderPost.js -------------------------------------------------------------------------------- /src/frontend/scripts/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/scripts/scripts.js -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_accordion.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_alert.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_badge.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_breadcrumb.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_button-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_buttons.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_card.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_carousel.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_close.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_containers.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_dropdown.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_forms.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_functions.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_grid.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_helpers.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_images.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_list-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_maps.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_maps.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_mixins.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_modal.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_nav.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_navbar.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_offcanvas.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_pagination.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_placeholders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_placeholders.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_popover.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_progress.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_reboot.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_root.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_spinners.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_tables.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_toasts.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_tooltip.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_transitions.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_type.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_utilities.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_variables-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_variables-dark.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/_variables.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap-grid.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap-reboot.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap-utilities.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/bootstrap.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_floating-labels.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_form-check.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_form-control.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_form-range.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_form-select.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_form-text.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_input-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_labels.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/forms/_validation.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_clearfix.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_color-bg.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_color-bg.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_colored-links.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_focus-ring.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_focus-ring.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_icon-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_icon-link.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_position.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_ratio.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_stacks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_stacks.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/helpers/_vr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/helpers/_vr.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_alert.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_backdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_backdrop.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_banner.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_banner.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_border-radius.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_buttons.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_caret.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_clearfix.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_color-mode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_color-mode.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_container.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_deprecate.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_forms.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_gradients.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_grid.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_image.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_list-group.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_lists.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_pagination.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_reset-text.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_resize.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_table-variants.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_transition.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_utilities.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/jasmine.js -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/mixins/_color-modes.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/mixins/_color-modes.test.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/mixins/_media-query-color-mode-full.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/mixins/_media-query-color-mode-full.test.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/mixins/_utilities.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/mixins/_utilities.test.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/sass-true/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/sass-true/register.js -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/sass-true/runner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/sass-true/runner.js -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/tests/utilities/_api.test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/tests/utilities/_api.test.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/utilities/_api.scss -------------------------------------------------------------------------------- /src/frontend/styles/bootstrap/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/bootstrap/vendor/_rfs.scss -------------------------------------------------------------------------------- /src/frontend/styles/styles-bs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/styles-bs.scss -------------------------------------------------------------------------------- /src/frontend/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/src/frontend/styles/styles.scss -------------------------------------------------------------------------------- /src/frontend/styles/variables.scss: -------------------------------------------------------------------------------- 1 | $color-link: rgb(27, 149, 224); 2 | -------------------------------------------------------------------------------- /tests/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/tests/.jshintrc -------------------------------------------------------------------------------- /vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/autoload.php -------------------------------------------------------------------------------- /vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /vendor/composer/InstalledVersions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/InstalledVersions.php -------------------------------------------------------------------------------- /vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/LICENSE -------------------------------------------------------------------------------- /vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/installed.json -------------------------------------------------------------------------------- /vendor/composer/installed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/installed.php -------------------------------------------------------------------------------- /vendor/composer/platform_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/composer/platform_check.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/CHANGELOG.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/Debug.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/HtmlDocument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/HtmlDocument.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/HtmlNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/HtmlNode.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/HtmlWeb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/HtmlWeb.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/LICENSE -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/README.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/composer.json -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/constants.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/example_advanced_selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/example_advanced_selector.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/example_basic_selector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/example_basic_selector.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/example_callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/example_callback.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/example_extract_html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/example_extract_html.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/example_modify_contents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/example_modify_contents.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/scraping/example_scraping_digg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/scraping/example_scraping_digg.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/scraping/example_scraping_imdb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/scraping/example_scraping_imdb.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/example/scraping/example_scraping_slashdot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/example/scraping/example_scraping_slashdot.php -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/README.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/custom_theme/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/custom_theme/main.html -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/disable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/disable.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/enable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/enable.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/index.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/log.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/log_once.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/log_once.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/setDebugHandler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/Debug/setDebugHandler.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__call.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__construct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__construct.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__debugInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__debugInfo.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__destruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__destruct.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__get.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__toString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/__toString.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/as_text_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/as_text_node.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/childNodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/childNodes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/copy_skip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/copy_skip.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/copy_until.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/copy_until.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/copy_until_char.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/copy_until_char.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/createElement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/createElement.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/createTextNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/createTextNode.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/decode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/decode.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/dump.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/expect.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/find.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/firstChild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/firstChild.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementById.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementById.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementByTagName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementByTagName.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementsById.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementsById.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementsByTagName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/getElementsByTagName.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/index.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/lastChild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/lastChild.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/link_nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/link_nodes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/load.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/loadFile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/loadFile.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/parse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/parse.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/parse_attr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/parse_attr.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/parse_charset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/parse_charset.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/prepare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/prepare.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/read_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/read_tag.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/remove_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/remove_callback.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/remove_noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/remove_noise.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/restore_noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/restore_noise.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/save.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/search_noise.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/search_noise.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/set_callback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/set_callback.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/skip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlDocument/skip.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__call.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__call.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__construct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__construct.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__debugInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__debugInfo.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__destruct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__destruct.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__get.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__isset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__isset.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__set.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__toString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__toString.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__unset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/__unset.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/addClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/addClass.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/appendChild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/appendChild.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/childNodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/childNodes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/clear.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/convert_text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/convert_text.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/definitions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/definitions.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/dump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/dump.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/dump_node.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/dump_node.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/expect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/expect.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/find.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/find.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/find_ancestor_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/find_ancestor_tag.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/firstChild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/firstChild.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getAllAttributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getAllAttributes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getAttribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getAttribute.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementById.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementById.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementByTagName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementByTagName.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementsById.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementsById.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementsByTagName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/getElementsByTagName.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/get_display_size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/get_display_size.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/hasAttribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/hasAttribute.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/hasChildNodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/hasChildNodes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/hasClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/hasClass.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/index.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/innertext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/innertext.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/is_block_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/is_block_element.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/is_inline_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/is_inline_element.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/is_utf8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/is_utf8.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/lastChild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/lastChild.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/makeup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/makeup.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/match.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/nextSibling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/nextSibling.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/nodeName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/nodeName.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/outertext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/outertext.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/parent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/parent.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/parentNode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/parentNode.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/parse_selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/parse_selector.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/previousSibling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/previousSibling.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/remove.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/removeAttribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/removeAttribute.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/removeChild.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/removeChild.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/removeClass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/removeClass.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/save.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/save.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/seek.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/seek.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/setAttribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/setAttribute.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/text.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/xmltext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/HtmlNode/xmltext.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/api/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/api/constants.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/extra.css -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/faq/0001.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/faq/0001.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/index.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/accessing-element-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/accessing-element-attributes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/adding-nodes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/adding-nodes.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/creating-dom-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/creating-dom-objects.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/customizing-parsing-behavior.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/customizing-parsing-behavior.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/finding-html-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/finding-html-elements.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/saving-dom-objects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/saving-dom-objects.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/manual/traversing-dom-tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/manual/traversing-dom-tree.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/quick-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/quick-start.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/docs/requirements.md -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/manual/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/manual/mkdocs.yml -------------------------------------------------------------------------------- /vendor/simplehtmldom/simplehtmldom/simple_html_dom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefanbohacek/fediverse-embeds-wordpress-plugin/HEAD/vendor/simplehtmldom/simplehtmldom/simple_html_dom.php --------------------------------------------------------------------------------