aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorST-DDT <[email protected]>2022-01-28 23:04:10 +0100
committerGitHub <[email protected]>2022-01-28 17:04:10 -0500
commita7176371f61cd2b317947e67d484944332dc4bd6 (patch)
tree3e9c22a93dd9a219a27d4fd6630b23f243117a67 /docs
parent537f56e129512b38f62f802a8099dc40f5cfa66f (diff)
downloadfaker-a7176371f61cd2b317947e67d484944332dc4bd6.tar.xz
faker-a7176371f61cd2b317947e67d484944332dc4bd6.zip
docs: use html tables instead of md tables to account for ::: v-pre (#330)
Co-authored-by: Jessica Sachs <[email protected]> Co-authored-by: Shinigami <[email protected]>
Diffstat (limited to 'docs')
-rw-r--r--docs/.vitepress/theme/index.css3
-rw-r--r--docs/.vitepress/theme/index.mjs1
2 files changed, 4 insertions, 0 deletions
diff --git a/docs/.vitepress/theme/index.css b/docs/.vitepress/theme/index.css
new file mode 100644
index 00000000..21bbf494
--- /dev/null
+++ b/docs/.vitepress/theme/index.css
@@ -0,0 +1,3 @@
+table td * {
+ display: inline;
+}
diff --git a/docs/.vitepress/theme/index.mjs b/docs/.vitepress/theme/index.mjs
index 26a6b5ca..b6bfbb86 100644
--- a/docs/.vitepress/theme/index.mjs
+++ b/docs/.vitepress/theme/index.mjs
@@ -1,3 +1,4 @@
+import './index.css';
import GlobalComponents from './components';
import DefaultTheme from 'vitepress/theme';