Browse Source

Add comment, test to unescapeHTML (#7949)

pull/4/head
Maciek Baron 5 years ago
committed by Yamagishi Kazutoshi
parent
commit
1e65cdf821
2 changed files with 11 additions and 0 deletions
  1. +10
    -0
      app/javascript/mastodon/utils/__tests__/html-test.js
  2. +1
    -0
      app/javascript/mastodon/utils/html.js

+ 10
- 0
app/javascript/mastodon/utils/__tests__/html-test.js View File

@ -0,0 +1,10 @@
import * as html from '../html';
describe('html', () => {
describe('unsecapeHTML', () => {
it('returns unescaped HTML', () => {
const output = html.unescapeHTML('<p>lorem</p><p>ipsum</p><br>&lt;br&gt;');
expect(output).toEqual('lorem\n\nipsum\n<br>');
});
});
});

+ 1
- 0
app/javascript/mastodon/utils/html.js View File

@ -1,3 +1,4 @@
// NB: This function can still return unsafe HTML
export const unescapeHTML = (html) => {
const wrapper = document.createElement('div');
wrapper.innerHTML = html.replace(/<br\s*\/?>/g, '\n').replace(/<\/p><p>/g, '\n\n').replace(/<[^>]*>/g, '');

Loading…
Cancel
Save