-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Alternatives to: Iframely or Embedly (grdp) #2776
Comments
for a field named bio, i was able to get the editor to save the output of a preview in the data output.
the output looks like however, what it needs to look like in order to render successfully:
so it seems that we need to remove the outer 2 tags |
Iframely actually offers a self-hosted (open sourced) version of their service: |
I've managed to self-host iframely, and it works as intended but I'm not sure what to do with it in the front-end of my website. Do i need to exec "//cdn.iframe.ly/embed.js", or do i need to self-host embed.js as well? How do I connect my self-hosted iframely with my front-end cms, so it automatically displays the media as intended instead of ? |
Related: #2737 I've created basic https://social-embed.git-pull.com, codepen, jsfiddle
// Load support for `<o-embed>`
import '@social-embed/wc';'` You can also do this In your {
mediaEmbed: {
elementName: 'o-embed'
}
} You can also do:
import { genericUrlRegex } from '@social-embed/lib'
const yourCKEditorConfig = {
// ...
mediaEmbed: {
elementName: 'o-embed',
extraProviders: [
{
name: 'genericProvider',
url: genericUrlRegex,
html: (match) => {
return `<o-embed url="${match[0]}"></o-embed>`
},
},
],
},
} But you must |
There has been no activity on this issue for the past year. We've marked it as stale and will close it in 30 days. We understand it may be relevant, so if you're interested in the solution, leave a comment or reaction under this issue. |
We've closed your issue due to inactivity over the last year. We understand that the issue may still be relevant. If so, feel free to open a new one (and link this issue to it). |
Is there a free client/server side alternative (php, js, what ever) out there? I just need it for videos.
It should be grdp conform.
The text was updated successfully, but these errors were encountered: