mirror of
https://github.com/outline/outline.git
synced 2026-02-09 04:18:57 -06:00
10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
// @flow
|
|
|
|
const unescape = (text: string) => {
|
|
return text
|
|
.replace(/\\([\\`*{}[\]()#+\-.!_>])/g, "$1")
|
|
.replace(/\n\\\n/g, "\n\n");
|
|
};
|
|
|
|
export default unescape;
|