We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8767c39 commit 6180cacCopy full SHA for 6180cac
07_fix_table_headers.sh
@@ -0,0 +1,11 @@
1
+#!/usr/bin/env bash
2
+
3
+shopt -s globstar
4
+for i in content/**/*.md
5
+do
6
+ echo $i
7
8
+ # Table headers are wrapped in an unnecessary <p> tag
9
+ sed -i -e 's,<th><p>,<th>,g' $i
10
+ sed -i -e 's,</p></th>,</th>,g' $i
11
+done
0 commit comments