25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- const parse = require('html-react-parser');
-
- module.exports = {
- htmlParse : function(html){
- if(html){
- return parse(html.replace(/\n/g,'<br/>'));
- }
- else '';
- }
- }
|