(el)
| 189 | } |
| 190 | |
| 191 | getPcontent(el) { |
| 192 | let tempContent = this.replaceSpec(this.$(el)); |
| 193 | tempContent = this.replaceCode(this.$(el)); |
| 194 | tempContent = this.replaceA(this.$(tempContent)); |
| 195 | tempContent = this.replaceCite(this.$(tempContent)); |
| 196 | tempContent = this.replaceStrong(this.$(tempContent)); |
| 197 | tempContent = this.replaceSpan(this.$(tempContent)); |
| 198 | tempContent = this.replaceEm(this.$(tempContent)); |
| 199 | tempContent = this.$(tempContent).text(); |
| 200 | let content = `\n${tempContent}\n`; |
| 201 | return content; |
| 202 | } |
| 203 | |
| 204 | replaceCode($el) { |
| 205 | let that = this; |
no test coverage detected