* feat: Gliffy integration * feat: JSFiddle integration * feat: Otter.ai integration * Optimised images with calibre/image-actions Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
14 lines
338 B
TypeScript
14 lines
338 B
TypeScript
import * as React from "react";
|
|
import Frame from "../components/Frame";
|
|
import { EmbedProps as Props } from ".";
|
|
|
|
function Gliffy(props: Props) {
|
|
return (
|
|
<Frame {...props} src={props.attrs.href} title="Gliffy Embed" border />
|
|
);
|
|
}
|
|
|
|
Gliffy.ENABLED = [new RegExp("https?://go.gliffy.com/go/share/(.*)$")];
|
|
|
|
export default Gliffy;
|