This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
outline/shared/utils/unescape.js
Tom Moor b9e0668d7d Bulk export (#684)
* First pass (working) collection export to zip

* Add export confirmation screen

* 👕

* Refactor

* Job for team export, move to tmp file, settings UI

* Export all collections job

* 👕

* Add specs

* Clarify UI
2018-06-20 21:33:21 -07:00

8 lines
135 B
JavaScript

// @flow
const unescape = (text: string) => {
return text.replace(/\\([\\`*{}[\]()#+\-.!_>])/g, '$1');
};
export default unescape;