mirror of
https://github.com/outline/outline.git
synced 2026-05-23 04:10:19 -05:00
b9e0668d7d
* 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
8 lines
135 B
JavaScript
8 lines
135 B
JavaScript
// @flow
|
|
|
|
const unescape = (text: string) => {
|
|
return text.replace(/\\([\\`*{}[\]()#+\-.!_>])/g, '$1');
|
|
};
|
|
|
|
export default unescape;
|