mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
292c894b93
Summary: Text columns can now display their values as Markdown-formatted text by changing their cell format to "Markdown". A minimal subset of the Markdown specification is currently supported. Test Plan: Browser tests. Reviewers: Spoffy, dsagal Reviewed By: Spoffy, dsagal Subscribers: dsagal, Spoffy Differential Revision: https://phab.getgrist.com/D4326
13 lines
412 B
TypeScript
13 lines
412 B
TypeScript
import {gristIconLink} from 'app/client/ui2018/links';
|
|
import escape from 'lodash/escape';
|
|
import {marked} from 'marked';
|
|
|
|
export const renderer = new marked.Renderer();
|
|
|
|
renderer.link = ({href, text}) => gristIconLink(href, text).outerHTML;
|
|
|
|
// Disable Markdown features that we aren't ready to support yet.
|
|
renderer.hr = ({raw}) => raw;
|
|
renderer.html = ({raw}) => escape(raw);
|
|
renderer.image = ({raw}) => raw;
|