markdown-to-html-cli
Version:
Command line tool generates markdown as html.
8 lines (7 loc) • 635 B
TypeScript
import { Element } from 'hast';
interface GithubCorners {
href?: string;
}
export declare const githubCornersStyle = "\na:hover .octo-arm { animation: octocat-wave 560ms ease-in-out; }\nsvg { z-index: 99; position: fixed; border: 0px; top: 0px; right: 0; }\n@media (max-width:500px) {\n a:hover .octo-arm { animation: none; }\n .octo-arm { animation: octocat-wave 560ms ease-in-out; }\n}\n\n@keyframes octocat-wave {\n 0%, 100% { transform: rotate(0); }\n 20%, 60% { transform: rotate(-25deg); }\n 40%, 80% { transform: rotate(10deg); }\n}\n";
export declare function githubCorners(opts: GithubCorners): Element[];
export {};