diff --git a/build/components/component.py b/build/components/component.py
index 97c2b91c72..ba6a6e73da 100644
--- a/build/components/component.py
+++ b/build/components/component.py
@@ -205,12 +205,12 @@ def _get_misc(self) -> None:
self._checkout(branch, repo, misc)
Component._dump_payload(repo, self._root._content, payload, misc.get('git_uri'), branch)
return
-
+
def _repo_env_dir(self) -> str:
if os.getenv(f'REPO_DIR'):
return os.getenv(f'REPO_DIR')
return ''
-
+
def _repo_uri(self) -> str:
if(os.getenv('REPOSITORY_URL')):
return os.getenv('REPOSITORY_URL')
@@ -225,7 +225,7 @@ def _skip_checkout(self, obj) -> bool:
if obj.get('git_uri') == self._repo_uri() and self._preview_mode():
return True
return False
-
+
def _checkout(self, ref, dest, obj):
if not self._skip_checkout(obj):
run(f'git checkout {ref}', cwd=dest)
@@ -303,15 +303,10 @@ def _make_repos(self) -> None:
def _process_commands(self) -> None:
logging.info(f'Processing {self._id} commands')
for name in self._commands:
- path = f'{self._content}/commands/{command_filename(name)}'
- mkdir_p(path)
- run(f'mv {path}.md {path}/index.md')
- md = Markdown(f'{path}/index.md')
+ path = f'{self._content}/commands/{command_filename(name)}.md'
+ md = Markdown(path)
md.process_command(name, self._commands)
- c = Command(name, self._commands.get(name))
- d = c.diagram()
- with open(f'{path}/syntax.svg', 'w+') as f:
- f.write(d)
+ # Note: SVG generation removed as part of directory structure simplification
def _process_docs(self) -> None:
logging.info(f'Processing {self._id} docs')
@@ -500,7 +495,7 @@ def _get_example_id_from_file(self, path):
def _copy_examples(self):
if ex := self.get('examples'):
- repo = self._git_clone(ex)
+ repo = self._git_clone(ex)
dev_branch = ex.get('dev_branch')
self._checkout(dev_branch, repo, ex)
path = ex.get('path', '')
diff --git a/build/update_cmds.py b/build/update_cmds.py
index f7707f7c4b..bb8d1a98cf 100755
--- a/build/update_cmds.py
+++ b/build/update_cmds.py
@@ -12,8 +12,8 @@
v = j.get(k)
c = Command(k, v)
sf = c.syntax()
- path = f'content/commands/{k.lower().replace(" ", "-")}/'
- md = Markdown(f'{path}index.md')
+ path = f'content/commands/{k.lower().replace(" ", "-")}.md'
+ md = Markdown(path)
md.fm_data |= v
md.fm_data.update({
'syntax_str': str(c),
diff --git a/content/commands/acl-cat/index.md b/content/commands/acl-cat.md
similarity index 100%
rename from content/commands/acl-cat/index.md
rename to content/commands/acl-cat.md
diff --git a/content/commands/acl-cat/syntax.svg b/content/commands/acl-cat/syntax.svg
deleted file mode 100644
index a12a65f668..0000000000
--- a/content/commands/acl-cat/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-deluser/index.md b/content/commands/acl-deluser.md
similarity index 100%
rename from content/commands/acl-deluser/index.md
rename to content/commands/acl-deluser.md
diff --git a/content/commands/acl-deluser/syntax.svg b/content/commands/acl-deluser/syntax.svg
deleted file mode 100644
index 84853c00a8..0000000000
--- a/content/commands/acl-deluser/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-dryrun/index.md b/content/commands/acl-dryrun.md
similarity index 100%
rename from content/commands/acl-dryrun/index.md
rename to content/commands/acl-dryrun.md
diff --git a/content/commands/acl-dryrun/syntax.svg b/content/commands/acl-dryrun/syntax.svg
deleted file mode 100644
index f78b806bde..0000000000
--- a/content/commands/acl-dryrun/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-genpass/index.md b/content/commands/acl-genpass.md
similarity index 100%
rename from content/commands/acl-genpass/index.md
rename to content/commands/acl-genpass.md
diff --git a/content/commands/acl-genpass/syntax.svg b/content/commands/acl-genpass/syntax.svg
deleted file mode 100644
index ed54d415fc..0000000000
--- a/content/commands/acl-genpass/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-getuser/index.md b/content/commands/acl-getuser.md
similarity index 100%
rename from content/commands/acl-getuser/index.md
rename to content/commands/acl-getuser.md
diff --git a/content/commands/acl-getuser/syntax.svg b/content/commands/acl-getuser/syntax.svg
deleted file mode 100644
index d369557bf2..0000000000
--- a/content/commands/acl-getuser/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-help/index.md b/content/commands/acl-help.md
similarity index 100%
rename from content/commands/acl-help/index.md
rename to content/commands/acl-help.md
diff --git a/content/commands/acl-help/syntax.svg b/content/commands/acl-help/syntax.svg
deleted file mode 100644
index c3f159a3a8..0000000000
--- a/content/commands/acl-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-list/index.md b/content/commands/acl-list.md
similarity index 100%
rename from content/commands/acl-list/index.md
rename to content/commands/acl-list.md
diff --git a/content/commands/acl-list/syntax.svg b/content/commands/acl-list/syntax.svg
deleted file mode 100644
index 25e304c38a..0000000000
--- a/content/commands/acl-list/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-load/index.md b/content/commands/acl-load.md
similarity index 100%
rename from content/commands/acl-load/index.md
rename to content/commands/acl-load.md
diff --git a/content/commands/acl-load/syntax.svg b/content/commands/acl-load/syntax.svg
deleted file mode 100644
index f60b862e5e..0000000000
--- a/content/commands/acl-load/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-log/index.md b/content/commands/acl-log.md
similarity index 100%
rename from content/commands/acl-log/index.md
rename to content/commands/acl-log.md
diff --git a/content/commands/acl-log/syntax.svg b/content/commands/acl-log/syntax.svg
deleted file mode 100644
index a13e69aa5a..0000000000
--- a/content/commands/acl-log/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-save/index.md b/content/commands/acl-save.md
similarity index 100%
rename from content/commands/acl-save/index.md
rename to content/commands/acl-save.md
diff --git a/content/commands/acl-save/syntax.svg b/content/commands/acl-save/syntax.svg
deleted file mode 100644
index e4570a3512..0000000000
--- a/content/commands/acl-save/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-setuser/index.md b/content/commands/acl-setuser.md
similarity index 100%
rename from content/commands/acl-setuser/index.md
rename to content/commands/acl-setuser.md
diff --git a/content/commands/acl-setuser/syntax.svg b/content/commands/acl-setuser/syntax.svg
deleted file mode 100644
index 77a3677eb1..0000000000
--- a/content/commands/acl-setuser/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-users/index.md b/content/commands/acl-users.md
similarity index 100%
rename from content/commands/acl-users/index.md
rename to content/commands/acl-users.md
diff --git a/content/commands/acl-users/syntax.svg b/content/commands/acl-users/syntax.svg
deleted file mode 100644
index c05c24b731..0000000000
--- a/content/commands/acl-users/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl-whoami/index.md b/content/commands/acl-whoami.md
similarity index 100%
rename from content/commands/acl-whoami/index.md
rename to content/commands/acl-whoami.md
diff --git a/content/commands/acl-whoami/syntax.svg b/content/commands/acl-whoami/syntax.svg
deleted file mode 100644
index 9c3501197b..0000000000
--- a/content/commands/acl-whoami/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/acl/index.md b/content/commands/acl.md
similarity index 100%
rename from content/commands/acl/index.md
rename to content/commands/acl.md
diff --git a/content/commands/acl/syntax.svg b/content/commands/acl/syntax.svg
deleted file mode 100644
index 3280f5e3dd..0000000000
--- a/content/commands/acl/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/append/index.md b/content/commands/append.md
similarity index 100%
rename from content/commands/append/index.md
rename to content/commands/append.md
diff --git a/content/commands/append/syntax.svg b/content/commands/append/syntax.svg
deleted file mode 100644
index 0fcf66c6e1..0000000000
--- a/content/commands/append/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/asking/index.md b/content/commands/asking.md
similarity index 100%
rename from content/commands/asking/index.md
rename to content/commands/asking.md
diff --git a/content/commands/asking/syntax.svg b/content/commands/asking/syntax.svg
deleted file mode 100644
index c7f503ad9f..0000000000
--- a/content/commands/asking/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/auth/index.md b/content/commands/auth.md
similarity index 100%
rename from content/commands/auth/index.md
rename to content/commands/auth.md
diff --git a/content/commands/auth/syntax.svg b/content/commands/auth/syntax.svg
deleted file mode 100644
index a025e18748..0000000000
--- a/content/commands/auth/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.add/index.md b/content/commands/bf.add.md
similarity index 100%
rename from content/commands/bf.add/index.md
rename to content/commands/bf.add.md
diff --git a/content/commands/bf.add/syntax.svg b/content/commands/bf.add/syntax.svg
deleted file mode 100644
index 0c006e07a2..0000000000
--- a/content/commands/bf.add/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.card/index.md b/content/commands/bf.card.md
similarity index 100%
rename from content/commands/bf.card/index.md
rename to content/commands/bf.card.md
diff --git a/content/commands/bf.card/syntax.svg b/content/commands/bf.card/syntax.svg
deleted file mode 100644
index 62a41c9d6c..0000000000
--- a/content/commands/bf.card/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.exists/index.md b/content/commands/bf.exists.md
similarity index 100%
rename from content/commands/bf.exists/index.md
rename to content/commands/bf.exists.md
diff --git a/content/commands/bf.exists/syntax.svg b/content/commands/bf.exists/syntax.svg
deleted file mode 100644
index da9567da9b..0000000000
--- a/content/commands/bf.exists/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.info/index.md b/content/commands/bf.info.md
similarity index 100%
rename from content/commands/bf.info/index.md
rename to content/commands/bf.info.md
diff --git a/content/commands/bf.info/syntax.svg b/content/commands/bf.info/syntax.svg
deleted file mode 100644
index f35b69f9ee..0000000000
--- a/content/commands/bf.info/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.insert/index.md b/content/commands/bf.insert.md
similarity index 100%
rename from content/commands/bf.insert/index.md
rename to content/commands/bf.insert.md
diff --git a/content/commands/bf.insert/syntax.svg b/content/commands/bf.insert/syntax.svg
deleted file mode 100644
index 7943715d29..0000000000
--- a/content/commands/bf.insert/syntax.svg
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.loadchunk/index.md b/content/commands/bf.loadchunk.md
similarity index 100%
rename from content/commands/bf.loadchunk/index.md
rename to content/commands/bf.loadchunk.md
diff --git a/content/commands/bf.loadchunk/syntax.svg b/content/commands/bf.loadchunk/syntax.svg
deleted file mode 100644
index 69375b0480..0000000000
--- a/content/commands/bf.loadchunk/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.madd/index.md b/content/commands/bf.madd.md
similarity index 100%
rename from content/commands/bf.madd/index.md
rename to content/commands/bf.madd.md
diff --git a/content/commands/bf.madd/syntax.svg b/content/commands/bf.madd/syntax.svg
deleted file mode 100644
index ac2dd3b40d..0000000000
--- a/content/commands/bf.madd/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.mexists/index.md b/content/commands/bf.mexists.md
similarity index 100%
rename from content/commands/bf.mexists/index.md
rename to content/commands/bf.mexists.md
diff --git a/content/commands/bf.mexists/syntax.svg b/content/commands/bf.mexists/syntax.svg
deleted file mode 100644
index b554403d83..0000000000
--- a/content/commands/bf.mexists/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.reserve/index.md b/content/commands/bf.reserve.md
similarity index 100%
rename from content/commands/bf.reserve/index.md
rename to content/commands/bf.reserve.md
diff --git a/content/commands/bf.reserve/syntax.svg b/content/commands/bf.reserve/syntax.svg
deleted file mode 100644
index 9bd90b2ee6..0000000000
--- a/content/commands/bf.reserve/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bf.scandump/index.md b/content/commands/bf.scandump.md
similarity index 100%
rename from content/commands/bf.scandump/index.md
rename to content/commands/bf.scandump.md
diff --git a/content/commands/bf.scandump/syntax.svg b/content/commands/bf.scandump/syntax.svg
deleted file mode 100644
index 7251db8838..0000000000
--- a/content/commands/bf.scandump/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bgrewriteaof/index.md b/content/commands/bgrewriteaof.md
similarity index 100%
rename from content/commands/bgrewriteaof/index.md
rename to content/commands/bgrewriteaof.md
diff --git a/content/commands/bgrewriteaof/syntax.svg b/content/commands/bgrewriteaof/syntax.svg
deleted file mode 100644
index d18a3bfd70..0000000000
--- a/content/commands/bgrewriteaof/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bgsave/index.md b/content/commands/bgsave.md
similarity index 100%
rename from content/commands/bgsave/index.md
rename to content/commands/bgsave.md
diff --git a/content/commands/bgsave/syntax.svg b/content/commands/bgsave/syntax.svg
deleted file mode 100644
index 287443214e..0000000000
--- a/content/commands/bgsave/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bitcount/index.md b/content/commands/bitcount.md
similarity index 100%
rename from content/commands/bitcount/index.md
rename to content/commands/bitcount.md
diff --git a/content/commands/bitcount/syntax.svg b/content/commands/bitcount/syntax.svg
deleted file mode 100644
index c4139605ae..0000000000
--- a/content/commands/bitcount/syntax.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bitfield/index.md b/content/commands/bitfield.md
similarity index 100%
rename from content/commands/bitfield/index.md
rename to content/commands/bitfield.md
diff --git a/content/commands/bitfield/syntax.svg b/content/commands/bitfield/syntax.svg
deleted file mode 100644
index 9d86ab0abc..0000000000
--- a/content/commands/bitfield/syntax.svg
+++ /dev/null
@@ -1,41 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bitfield_ro/index.md b/content/commands/bitfield_ro.md
similarity index 100%
rename from content/commands/bitfield_ro/index.md
rename to content/commands/bitfield_ro.md
diff --git a/content/commands/bitfield_ro/syntax.svg b/content/commands/bitfield_ro/syntax.svg
deleted file mode 100644
index e21910b7e2..0000000000
--- a/content/commands/bitfield_ro/syntax.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bitop/index.md b/content/commands/bitop.md
similarity index 100%
rename from content/commands/bitop/index.md
rename to content/commands/bitop.md
diff --git a/content/commands/bitop/syntax.svg b/content/commands/bitop/syntax.svg
deleted file mode 100644
index 0440289acf..0000000000
--- a/content/commands/bitop/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bitpos/index.md b/content/commands/bitpos.md
similarity index 100%
rename from content/commands/bitpos/index.md
rename to content/commands/bitpos.md
diff --git a/content/commands/bitpos/syntax.svg b/content/commands/bitpos/syntax.svg
deleted file mode 100644
index 477120ebe9..0000000000
--- a/content/commands/bitpos/syntax.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/blmove/index.md b/content/commands/blmove.md
similarity index 100%
rename from content/commands/blmove/index.md
rename to content/commands/blmove.md
diff --git a/content/commands/blmove/syntax.svg b/content/commands/blmove/syntax.svg
deleted file mode 100644
index e3cd569b86..0000000000
--- a/content/commands/blmove/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/blmpop/index.md b/content/commands/blmpop.md
similarity index 100%
rename from content/commands/blmpop/index.md
rename to content/commands/blmpop.md
diff --git a/content/commands/blmpop/syntax.svg b/content/commands/blmpop/syntax.svg
deleted file mode 100644
index dd0ea9df57..0000000000
--- a/content/commands/blmpop/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/blpop/index.md b/content/commands/blpop.md
similarity index 100%
rename from content/commands/blpop/index.md
rename to content/commands/blpop.md
diff --git a/content/commands/blpop/syntax.svg b/content/commands/blpop/syntax.svg
deleted file mode 100644
index 55d2066b41..0000000000
--- a/content/commands/blpop/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/brpop/index.md b/content/commands/brpop.md
similarity index 100%
rename from content/commands/brpop/index.md
rename to content/commands/brpop.md
diff --git a/content/commands/brpop/syntax.svg b/content/commands/brpop/syntax.svg
deleted file mode 100644
index 1445da9422..0000000000
--- a/content/commands/brpop/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/brpoplpush/index.md b/content/commands/brpoplpush.md
similarity index 100%
rename from content/commands/brpoplpush/index.md
rename to content/commands/brpoplpush.md
diff --git a/content/commands/brpoplpush/syntax.svg b/content/commands/brpoplpush/syntax.svg
deleted file mode 100644
index a0e77365ce..0000000000
--- a/content/commands/brpoplpush/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bzmpop/index.md b/content/commands/bzmpop.md
similarity index 100%
rename from content/commands/bzmpop/index.md
rename to content/commands/bzmpop.md
diff --git a/content/commands/bzmpop/syntax.svg b/content/commands/bzmpop/syntax.svg
deleted file mode 100644
index 0a9c326708..0000000000
--- a/content/commands/bzmpop/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bzpopmax/index.md b/content/commands/bzpopmax.md
similarity index 100%
rename from content/commands/bzpopmax/index.md
rename to content/commands/bzpopmax.md
diff --git a/content/commands/bzpopmax/syntax.svg b/content/commands/bzpopmax/syntax.svg
deleted file mode 100644
index 9032616c3a..0000000000
--- a/content/commands/bzpopmax/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/bzpopmin/index.md b/content/commands/bzpopmin.md
similarity index 100%
rename from content/commands/bzpopmin/index.md
rename to content/commands/bzpopmin.md
diff --git a/content/commands/bzpopmin/syntax.svg b/content/commands/bzpopmin/syntax.svg
deleted file mode 100644
index 0ca76c02e5..0000000000
--- a/content/commands/bzpopmin/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.add/index.md b/content/commands/cf.add.md
similarity index 100%
rename from content/commands/cf.add/index.md
rename to content/commands/cf.add.md
diff --git a/content/commands/cf.add/syntax.svg b/content/commands/cf.add/syntax.svg
deleted file mode 100644
index cd8ffad680..0000000000
--- a/content/commands/cf.add/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.addnx/index.md b/content/commands/cf.addnx.md
similarity index 100%
rename from content/commands/cf.addnx/index.md
rename to content/commands/cf.addnx.md
diff --git a/content/commands/cf.addnx/syntax.svg b/content/commands/cf.addnx/syntax.svg
deleted file mode 100644
index 6f235aa105..0000000000
--- a/content/commands/cf.addnx/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.count/index.md b/content/commands/cf.count.md
similarity index 100%
rename from content/commands/cf.count/index.md
rename to content/commands/cf.count.md
diff --git a/content/commands/cf.count/syntax.svg b/content/commands/cf.count/syntax.svg
deleted file mode 100644
index 8c21866893..0000000000
--- a/content/commands/cf.count/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.del/index.md b/content/commands/cf.del.md
similarity index 100%
rename from content/commands/cf.del/index.md
rename to content/commands/cf.del.md
diff --git a/content/commands/cf.del/syntax.svg b/content/commands/cf.del/syntax.svg
deleted file mode 100644
index a0643b125f..0000000000
--- a/content/commands/cf.del/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.exists/index.md b/content/commands/cf.exists.md
similarity index 100%
rename from content/commands/cf.exists/index.md
rename to content/commands/cf.exists.md
diff --git a/content/commands/cf.exists/syntax.svg b/content/commands/cf.exists/syntax.svg
deleted file mode 100644
index 43693705f5..0000000000
--- a/content/commands/cf.exists/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.info/index.md b/content/commands/cf.info.md
similarity index 100%
rename from content/commands/cf.info/index.md
rename to content/commands/cf.info.md
diff --git a/content/commands/cf.info/syntax.svg b/content/commands/cf.info/syntax.svg
deleted file mode 100644
index 5a007ed219..0000000000
--- a/content/commands/cf.info/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.insert/index.md b/content/commands/cf.insert.md
similarity index 100%
rename from content/commands/cf.insert/index.md
rename to content/commands/cf.insert.md
diff --git a/content/commands/cf.insert/syntax.svg b/content/commands/cf.insert/syntax.svg
deleted file mode 100644
index e799a45981..0000000000
--- a/content/commands/cf.insert/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.insertnx/index.md b/content/commands/cf.insertnx.md
similarity index 100%
rename from content/commands/cf.insertnx/index.md
rename to content/commands/cf.insertnx.md
diff --git a/content/commands/cf.insertnx/syntax.svg b/content/commands/cf.insertnx/syntax.svg
deleted file mode 100644
index 02dda9c32e..0000000000
--- a/content/commands/cf.insertnx/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.loadchunk/index.md b/content/commands/cf.loadchunk.md
similarity index 100%
rename from content/commands/cf.loadchunk/index.md
rename to content/commands/cf.loadchunk.md
diff --git a/content/commands/cf.loadchunk/syntax.svg b/content/commands/cf.loadchunk/syntax.svg
deleted file mode 100644
index 5e71e65a73..0000000000
--- a/content/commands/cf.loadchunk/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.mexists/index.md b/content/commands/cf.mexists.md
similarity index 100%
rename from content/commands/cf.mexists/index.md
rename to content/commands/cf.mexists.md
diff --git a/content/commands/cf.mexists/syntax.svg b/content/commands/cf.mexists/syntax.svg
deleted file mode 100644
index 3dd292af8c..0000000000
--- a/content/commands/cf.mexists/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.reserve/index.md b/content/commands/cf.reserve.md
similarity index 100%
rename from content/commands/cf.reserve/index.md
rename to content/commands/cf.reserve.md
diff --git a/content/commands/cf.reserve/syntax.svg b/content/commands/cf.reserve/syntax.svg
deleted file mode 100644
index 5e643a7bc3..0000000000
--- a/content/commands/cf.reserve/syntax.svg
+++ /dev/null
@@ -1,25 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cf.scandump/index.md b/content/commands/cf.scandump.md
similarity index 100%
rename from content/commands/cf.scandump/index.md
rename to content/commands/cf.scandump.md
diff --git a/content/commands/cf.scandump/syntax.svg b/content/commands/cf.scandump/syntax.svg
deleted file mode 100644
index 8b299211a3..0000000000
--- a/content/commands/cf.scandump/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-caching/index.md b/content/commands/client-caching.md
similarity index 100%
rename from content/commands/client-caching/index.md
rename to content/commands/client-caching.md
diff --git a/content/commands/client-caching/syntax.svg b/content/commands/client-caching/syntax.svg
deleted file mode 100644
index 57fd01c2e4..0000000000
--- a/content/commands/client-caching/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-getname/index.md b/content/commands/client-getname.md
similarity index 100%
rename from content/commands/client-getname/index.md
rename to content/commands/client-getname.md
diff --git a/content/commands/client-getname/syntax.svg b/content/commands/client-getname/syntax.svg
deleted file mode 100644
index 016252661f..0000000000
--- a/content/commands/client-getname/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-getredir/index.md b/content/commands/client-getredir.md
similarity index 100%
rename from content/commands/client-getredir/index.md
rename to content/commands/client-getredir.md
diff --git a/content/commands/client-getredir/syntax.svg b/content/commands/client-getredir/syntax.svg
deleted file mode 100644
index 4c1b95a25d..0000000000
--- a/content/commands/client-getredir/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-help/index.md b/content/commands/client-help.md
similarity index 100%
rename from content/commands/client-help/index.md
rename to content/commands/client-help.md
diff --git a/content/commands/client-help/syntax.svg b/content/commands/client-help/syntax.svg
deleted file mode 100644
index 54964e7325..0000000000
--- a/content/commands/client-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-id/index.md b/content/commands/client-id.md
similarity index 100%
rename from content/commands/client-id/index.md
rename to content/commands/client-id.md
diff --git a/content/commands/client-id/syntax.svg b/content/commands/client-id/syntax.svg
deleted file mode 100644
index 71ef0221c3..0000000000
--- a/content/commands/client-id/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-info/index.md b/content/commands/client-info.md
similarity index 100%
rename from content/commands/client-info/index.md
rename to content/commands/client-info.md
diff --git a/content/commands/client-info/syntax.svg b/content/commands/client-info/syntax.svg
deleted file mode 100644
index 7279562c2d..0000000000
--- a/content/commands/client-info/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-kill/index.md b/content/commands/client-kill.md
similarity index 100%
rename from content/commands/client-kill/index.md
rename to content/commands/client-kill.md
diff --git a/content/commands/client-kill/syntax.svg b/content/commands/client-kill/syntax.svg
deleted file mode 100644
index 54932247f2..0000000000
--- a/content/commands/client-kill/syntax.svg
+++ /dev/null
@@ -1,49 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-list/index.md b/content/commands/client-list.md
similarity index 100%
rename from content/commands/client-list/index.md
rename to content/commands/client-list.md
diff --git a/content/commands/client-list/syntax.svg b/content/commands/client-list/syntax.svg
deleted file mode 100644
index 7bc099df1f..0000000000
--- a/content/commands/client-list/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-no-evict/index.md b/content/commands/client-no-evict.md
similarity index 100%
rename from content/commands/client-no-evict/index.md
rename to content/commands/client-no-evict.md
diff --git a/content/commands/client-no-evict/syntax.svg b/content/commands/client-no-evict/syntax.svg
deleted file mode 100644
index 5e31b88394..0000000000
--- a/content/commands/client-no-evict/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-no-touch/index.md b/content/commands/client-no-touch.md
similarity index 100%
rename from content/commands/client-no-touch/index.md
rename to content/commands/client-no-touch.md
diff --git a/content/commands/client-no-touch/syntax.svg b/content/commands/client-no-touch/syntax.svg
deleted file mode 100644
index e3d034e078..0000000000
--- a/content/commands/client-no-touch/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-pause/index.md b/content/commands/client-pause.md
similarity index 100%
rename from content/commands/client-pause/index.md
rename to content/commands/client-pause.md
diff --git a/content/commands/client-pause/syntax.svg b/content/commands/client-pause/syntax.svg
deleted file mode 100644
index 6c4cc83398..0000000000
--- a/content/commands/client-pause/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-reply/index.md b/content/commands/client-reply.md
similarity index 100%
rename from content/commands/client-reply/index.md
rename to content/commands/client-reply.md
diff --git a/content/commands/client-reply/syntax.svg b/content/commands/client-reply/syntax.svg
deleted file mode 100644
index 252d4d56cd..0000000000
--- a/content/commands/client-reply/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-setinfo/index.md b/content/commands/client-setinfo.md
similarity index 100%
rename from content/commands/client-setinfo/index.md
rename to content/commands/client-setinfo.md
diff --git a/content/commands/client-setinfo/syntax.svg b/content/commands/client-setinfo/syntax.svg
deleted file mode 100644
index c3b29f830a..0000000000
--- a/content/commands/client-setinfo/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-setname/index.md b/content/commands/client-setname.md
similarity index 100%
rename from content/commands/client-setname/index.md
rename to content/commands/client-setname.md
diff --git a/content/commands/client-setname/syntax.svg b/content/commands/client-setname/syntax.svg
deleted file mode 100644
index 2332ddc034..0000000000
--- a/content/commands/client-setname/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-tracking/index.md b/content/commands/client-tracking.md
similarity index 100%
rename from content/commands/client-tracking/index.md
rename to content/commands/client-tracking.md
diff --git a/content/commands/client-tracking/syntax.svg b/content/commands/client-tracking/syntax.svg
deleted file mode 100644
index 845d88ae12..0000000000
--- a/content/commands/client-tracking/syntax.svg
+++ /dev/null
@@ -1,36 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-trackinginfo/index.md b/content/commands/client-trackinginfo.md
similarity index 100%
rename from content/commands/client-trackinginfo/index.md
rename to content/commands/client-trackinginfo.md
diff --git a/content/commands/client-trackinginfo/syntax.svg b/content/commands/client-trackinginfo/syntax.svg
deleted file mode 100644
index 676a2422f6..0000000000
--- a/content/commands/client-trackinginfo/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-unblock/index.md b/content/commands/client-unblock.md
similarity index 100%
rename from content/commands/client-unblock/index.md
rename to content/commands/client-unblock.md
diff --git a/content/commands/client-unblock/syntax.svg b/content/commands/client-unblock/syntax.svg
deleted file mode 100644
index ea0e354f9a..0000000000
--- a/content/commands/client-unblock/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client-unpause/index.md b/content/commands/client-unpause.md
similarity index 100%
rename from content/commands/client-unpause/index.md
rename to content/commands/client-unpause.md
diff --git a/content/commands/client-unpause/syntax.svg b/content/commands/client-unpause/syntax.svg
deleted file mode 100644
index 389789f75c..0000000000
--- a/content/commands/client-unpause/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/client/index.md b/content/commands/client.md
similarity index 100%
rename from content/commands/client/index.md
rename to content/commands/client.md
diff --git a/content/commands/client/syntax.svg b/content/commands/client/syntax.svg
deleted file mode 100644
index e49045071e..0000000000
--- a/content/commands/client/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-addslots/index.md b/content/commands/cluster-addslots.md
similarity index 100%
rename from content/commands/cluster-addslots/index.md
rename to content/commands/cluster-addslots.md
diff --git a/content/commands/cluster-addslots/syntax.svg b/content/commands/cluster-addslots/syntax.svg
deleted file mode 100644
index 5e339bf947..0000000000
--- a/content/commands/cluster-addslots/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-addslotsrange/index.md b/content/commands/cluster-addslotsrange.md
similarity index 100%
rename from content/commands/cluster-addslotsrange/index.md
rename to content/commands/cluster-addslotsrange.md
diff --git a/content/commands/cluster-addslotsrange/syntax.svg b/content/commands/cluster-addslotsrange/syntax.svg
deleted file mode 100644
index 924fad8ed1..0000000000
--- a/content/commands/cluster-addslotsrange/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-bumpepoch/index.md b/content/commands/cluster-bumpepoch.md
similarity index 100%
rename from content/commands/cluster-bumpepoch/index.md
rename to content/commands/cluster-bumpepoch.md
diff --git a/content/commands/cluster-bumpepoch/syntax.svg b/content/commands/cluster-bumpepoch/syntax.svg
deleted file mode 100644
index 1f20d350ce..0000000000
--- a/content/commands/cluster-bumpepoch/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-count-failure-reports/index.md b/content/commands/cluster-count-failure-reports.md
similarity index 100%
rename from content/commands/cluster-count-failure-reports/index.md
rename to content/commands/cluster-count-failure-reports.md
diff --git a/content/commands/cluster-count-failure-reports/syntax.svg b/content/commands/cluster-count-failure-reports/syntax.svg
deleted file mode 100644
index e1e29aee75..0000000000
--- a/content/commands/cluster-count-failure-reports/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-countkeysinslot/index.md b/content/commands/cluster-countkeysinslot.md
similarity index 100%
rename from content/commands/cluster-countkeysinslot/index.md
rename to content/commands/cluster-countkeysinslot.md
diff --git a/content/commands/cluster-countkeysinslot/syntax.svg b/content/commands/cluster-countkeysinslot/syntax.svg
deleted file mode 100644
index 67a9859746..0000000000
--- a/content/commands/cluster-countkeysinslot/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-delslots/index.md b/content/commands/cluster-delslots.md
similarity index 100%
rename from content/commands/cluster-delslots/index.md
rename to content/commands/cluster-delslots.md
diff --git a/content/commands/cluster-delslots/syntax.svg b/content/commands/cluster-delslots/syntax.svg
deleted file mode 100644
index 5d0e5376bd..0000000000
--- a/content/commands/cluster-delslots/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-delslotsrange/index.md b/content/commands/cluster-delslotsrange.md
similarity index 100%
rename from content/commands/cluster-delslotsrange/index.md
rename to content/commands/cluster-delslotsrange.md
diff --git a/content/commands/cluster-delslotsrange/syntax.svg b/content/commands/cluster-delslotsrange/syntax.svg
deleted file mode 100644
index 0aa0d8182a..0000000000
--- a/content/commands/cluster-delslotsrange/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-failover/index.md b/content/commands/cluster-failover.md
similarity index 100%
rename from content/commands/cluster-failover/index.md
rename to content/commands/cluster-failover.md
diff --git a/content/commands/cluster-failover/syntax.svg b/content/commands/cluster-failover/syntax.svg
deleted file mode 100644
index 8be9b23266..0000000000
--- a/content/commands/cluster-failover/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-flushslots/index.md b/content/commands/cluster-flushslots.md
similarity index 100%
rename from content/commands/cluster-flushslots/index.md
rename to content/commands/cluster-flushslots.md
diff --git a/content/commands/cluster-flushslots/syntax.svg b/content/commands/cluster-flushslots/syntax.svg
deleted file mode 100644
index 56809d8bc8..0000000000
--- a/content/commands/cluster-flushslots/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-forget/index.md b/content/commands/cluster-forget.md
similarity index 100%
rename from content/commands/cluster-forget/index.md
rename to content/commands/cluster-forget.md
diff --git a/content/commands/cluster-forget/syntax.svg b/content/commands/cluster-forget/syntax.svg
deleted file mode 100644
index a431345353..0000000000
--- a/content/commands/cluster-forget/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-getkeysinslot/index.md b/content/commands/cluster-getkeysinslot.md
similarity index 100%
rename from content/commands/cluster-getkeysinslot/index.md
rename to content/commands/cluster-getkeysinslot.md
diff --git a/content/commands/cluster-getkeysinslot/syntax.svg b/content/commands/cluster-getkeysinslot/syntax.svg
deleted file mode 100644
index 84fac15d18..0000000000
--- a/content/commands/cluster-getkeysinslot/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-help/index.md b/content/commands/cluster-help.md
similarity index 100%
rename from content/commands/cluster-help/index.md
rename to content/commands/cluster-help.md
diff --git a/content/commands/cluster-help/syntax.svg b/content/commands/cluster-help/syntax.svg
deleted file mode 100644
index d79476c261..0000000000
--- a/content/commands/cluster-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-info/index.md b/content/commands/cluster-info.md
similarity index 100%
rename from content/commands/cluster-info/index.md
rename to content/commands/cluster-info.md
diff --git a/content/commands/cluster-info/syntax.svg b/content/commands/cluster-info/syntax.svg
deleted file mode 100644
index 150dc3d38f..0000000000
--- a/content/commands/cluster-info/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-keyslot/index.md b/content/commands/cluster-keyslot.md
similarity index 100%
rename from content/commands/cluster-keyslot/index.md
rename to content/commands/cluster-keyslot.md
diff --git a/content/commands/cluster-keyslot/syntax.svg b/content/commands/cluster-keyslot/syntax.svg
deleted file mode 100644
index bf8d6db44b..0000000000
--- a/content/commands/cluster-keyslot/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-links/index.md b/content/commands/cluster-links.md
similarity index 100%
rename from content/commands/cluster-links/index.md
rename to content/commands/cluster-links.md
diff --git a/content/commands/cluster-links/syntax.svg b/content/commands/cluster-links/syntax.svg
deleted file mode 100644
index 2fc81506ac..0000000000
--- a/content/commands/cluster-links/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-meet/index.md b/content/commands/cluster-meet.md
similarity index 100%
rename from content/commands/cluster-meet/index.md
rename to content/commands/cluster-meet.md
diff --git a/content/commands/cluster-meet/syntax.svg b/content/commands/cluster-meet/syntax.svg
deleted file mode 100644
index 5127a5eaf7..0000000000
--- a/content/commands/cluster-meet/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-myid/index.md b/content/commands/cluster-myid.md
similarity index 100%
rename from content/commands/cluster-myid/index.md
rename to content/commands/cluster-myid.md
diff --git a/content/commands/cluster-myid/syntax.svg b/content/commands/cluster-myid/syntax.svg
deleted file mode 100644
index b823b5ecec..0000000000
--- a/content/commands/cluster-myid/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-myshardid/index.md b/content/commands/cluster-myshardid.md
similarity index 100%
rename from content/commands/cluster-myshardid/index.md
rename to content/commands/cluster-myshardid.md
diff --git a/content/commands/cluster-myshardid/syntax.svg b/content/commands/cluster-myshardid/syntax.svg
deleted file mode 100644
index 7351a67098..0000000000
--- a/content/commands/cluster-myshardid/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-nodes/index.md b/content/commands/cluster-nodes.md
similarity index 100%
rename from content/commands/cluster-nodes/index.md
rename to content/commands/cluster-nodes.md
diff --git a/content/commands/cluster-nodes/syntax.svg b/content/commands/cluster-nodes/syntax.svg
deleted file mode 100644
index 805c251534..0000000000
--- a/content/commands/cluster-nodes/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-replicas/index.md b/content/commands/cluster-replicas.md
similarity index 100%
rename from content/commands/cluster-replicas/index.md
rename to content/commands/cluster-replicas.md
diff --git a/content/commands/cluster-replicas/syntax.svg b/content/commands/cluster-replicas/syntax.svg
deleted file mode 100644
index 8911e3e940..0000000000
--- a/content/commands/cluster-replicas/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-replicate/index.md b/content/commands/cluster-replicate.md
similarity index 100%
rename from content/commands/cluster-replicate/index.md
rename to content/commands/cluster-replicate.md
diff --git a/content/commands/cluster-replicate/syntax.svg b/content/commands/cluster-replicate/syntax.svg
deleted file mode 100644
index ff82750a94..0000000000
--- a/content/commands/cluster-replicate/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-reset/index.md b/content/commands/cluster-reset.md
similarity index 100%
rename from content/commands/cluster-reset/index.md
rename to content/commands/cluster-reset.md
diff --git a/content/commands/cluster-reset/syntax.svg b/content/commands/cluster-reset/syntax.svg
deleted file mode 100644
index e3e3f364de..0000000000
--- a/content/commands/cluster-reset/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-saveconfig/index.md b/content/commands/cluster-saveconfig.md
similarity index 100%
rename from content/commands/cluster-saveconfig/index.md
rename to content/commands/cluster-saveconfig.md
diff --git a/content/commands/cluster-saveconfig/syntax.svg b/content/commands/cluster-saveconfig/syntax.svg
deleted file mode 100644
index c3f167eec6..0000000000
--- a/content/commands/cluster-saveconfig/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-set-config-epoch/index.md b/content/commands/cluster-set-config-epoch.md
similarity index 100%
rename from content/commands/cluster-set-config-epoch/index.md
rename to content/commands/cluster-set-config-epoch.md
diff --git a/content/commands/cluster-set-config-epoch/syntax.svg b/content/commands/cluster-set-config-epoch/syntax.svg
deleted file mode 100644
index 57a60fc11c..0000000000
--- a/content/commands/cluster-set-config-epoch/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-setslot/index.md b/content/commands/cluster-setslot.md
similarity index 100%
rename from content/commands/cluster-setslot/index.md
rename to content/commands/cluster-setslot.md
diff --git a/content/commands/cluster-setslot/syntax.svg b/content/commands/cluster-setslot/syntax.svg
deleted file mode 100644
index 3142cb5b1b..0000000000
--- a/content/commands/cluster-setslot/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-shards/index.md b/content/commands/cluster-shards.md
similarity index 100%
rename from content/commands/cluster-shards/index.md
rename to content/commands/cluster-shards.md
diff --git a/content/commands/cluster-shards/syntax.svg b/content/commands/cluster-shards/syntax.svg
deleted file mode 100644
index 3a9a71015b..0000000000
--- a/content/commands/cluster-shards/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-slaves/index.md b/content/commands/cluster-slaves.md
similarity index 100%
rename from content/commands/cluster-slaves/index.md
rename to content/commands/cluster-slaves.md
diff --git a/content/commands/cluster-slaves/syntax.svg b/content/commands/cluster-slaves/syntax.svg
deleted file mode 100644
index 0f86a9db73..0000000000
--- a/content/commands/cluster-slaves/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster-slots/index.md b/content/commands/cluster-slots.md
similarity index 100%
rename from content/commands/cluster-slots/index.md
rename to content/commands/cluster-slots.md
diff --git a/content/commands/cluster-slots/syntax.svg b/content/commands/cluster-slots/syntax.svg
deleted file mode 100644
index f9158fd3c5..0000000000
--- a/content/commands/cluster-slots/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cluster/index.md b/content/commands/cluster.md
similarity index 100%
rename from content/commands/cluster/index.md
rename to content/commands/cluster.md
diff --git a/content/commands/cluster/syntax.svg b/content/commands/cluster/syntax.svg
deleted file mode 100644
index e25a773443..0000000000
--- a/content/commands/cluster/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cms.incrby/index.md b/content/commands/cms.incrby.md
similarity index 100%
rename from content/commands/cms.incrby/index.md
rename to content/commands/cms.incrby.md
diff --git a/content/commands/cms.incrby/syntax.svg b/content/commands/cms.incrby/syntax.svg
deleted file mode 100644
index 28546a81a6..0000000000
--- a/content/commands/cms.incrby/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cms.info/index.md b/content/commands/cms.info.md
similarity index 100%
rename from content/commands/cms.info/index.md
rename to content/commands/cms.info.md
diff --git a/content/commands/cms.info/syntax.svg b/content/commands/cms.info/syntax.svg
deleted file mode 100644
index 97244f21dc..0000000000
--- a/content/commands/cms.info/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cms.initbydim/index.md b/content/commands/cms.initbydim.md
similarity index 100%
rename from content/commands/cms.initbydim/index.md
rename to content/commands/cms.initbydim.md
diff --git a/content/commands/cms.initbydim/syntax.svg b/content/commands/cms.initbydim/syntax.svg
deleted file mode 100644
index 6e925479bc..0000000000
--- a/content/commands/cms.initbydim/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cms.initbyprob/index.md b/content/commands/cms.initbyprob.md
similarity index 100%
rename from content/commands/cms.initbyprob/index.md
rename to content/commands/cms.initbyprob.md
diff --git a/content/commands/cms.initbyprob/syntax.svg b/content/commands/cms.initbyprob/syntax.svg
deleted file mode 100644
index 093aa26038..0000000000
--- a/content/commands/cms.initbyprob/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cms.merge/index.md b/content/commands/cms.merge.md
similarity index 100%
rename from content/commands/cms.merge/index.md
rename to content/commands/cms.merge.md
diff --git a/content/commands/cms.merge/syntax.svg b/content/commands/cms.merge/syntax.svg
deleted file mode 100644
index d4f17409d8..0000000000
--- a/content/commands/cms.merge/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/cms.query/index.md b/content/commands/cms.query.md
similarity index 100%
rename from content/commands/cms.query/index.md
rename to content/commands/cms.query.md
diff --git a/content/commands/cms.query/syntax.svg b/content/commands/cms.query/syntax.svg
deleted file mode 100644
index ed2fc104a1..0000000000
--- a/content/commands/cms.query/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-count/index.md b/content/commands/command-count.md
similarity index 100%
rename from content/commands/command-count/index.md
rename to content/commands/command-count.md
diff --git a/content/commands/command-count/syntax.svg b/content/commands/command-count/syntax.svg
deleted file mode 100644
index dccdfd5cd3..0000000000
--- a/content/commands/command-count/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-docs/index.md b/content/commands/command-docs.md
similarity index 100%
rename from content/commands/command-docs/index.md
rename to content/commands/command-docs.md
diff --git a/content/commands/command-docs/syntax.svg b/content/commands/command-docs/syntax.svg
deleted file mode 100644
index f2a7dfd803..0000000000
--- a/content/commands/command-docs/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-getkeys/index.md b/content/commands/command-getkeys.md
similarity index 100%
rename from content/commands/command-getkeys/index.md
rename to content/commands/command-getkeys.md
diff --git a/content/commands/command-getkeys/syntax.svg b/content/commands/command-getkeys/syntax.svg
deleted file mode 100644
index b2709546b7..0000000000
--- a/content/commands/command-getkeys/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-getkeysandflags/index.md b/content/commands/command-getkeysandflags.md
similarity index 100%
rename from content/commands/command-getkeysandflags/index.md
rename to content/commands/command-getkeysandflags.md
diff --git a/content/commands/command-getkeysandflags/syntax.svg b/content/commands/command-getkeysandflags/syntax.svg
deleted file mode 100644
index 6ac11e9713..0000000000
--- a/content/commands/command-getkeysandflags/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-help/index.md b/content/commands/command-help.md
similarity index 100%
rename from content/commands/command-help/index.md
rename to content/commands/command-help.md
diff --git a/content/commands/command-help/syntax.svg b/content/commands/command-help/syntax.svg
deleted file mode 100644
index 080aed9f39..0000000000
--- a/content/commands/command-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-info/index.md b/content/commands/command-info.md
similarity index 100%
rename from content/commands/command-info/index.md
rename to content/commands/command-info.md
diff --git a/content/commands/command-info/syntax.svg b/content/commands/command-info/syntax.svg
deleted file mode 100644
index 0a334883da..0000000000
--- a/content/commands/command-info/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command-list/index.md b/content/commands/command-list.md
similarity index 100%
rename from content/commands/command-list/index.md
rename to content/commands/command-list.md
diff --git a/content/commands/command-list/syntax.svg b/content/commands/command-list/syntax.svg
deleted file mode 100644
index 460a09c0a9..0000000000
--- a/content/commands/command-list/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/command/index.md b/content/commands/command.md
similarity index 100%
rename from content/commands/command/index.md
rename to content/commands/command.md
diff --git a/content/commands/command/syntax.svg b/content/commands/command/syntax.svg
deleted file mode 100644
index f1aeea7e93..0000000000
--- a/content/commands/command/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/config-get/index.md b/content/commands/config-get.md
similarity index 100%
rename from content/commands/config-get/index.md
rename to content/commands/config-get.md
diff --git a/content/commands/config-get/syntax.svg b/content/commands/config-get/syntax.svg
deleted file mode 100644
index 23d910e82e..0000000000
--- a/content/commands/config-get/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/config-help/index.md b/content/commands/config-help.md
similarity index 100%
rename from content/commands/config-help/index.md
rename to content/commands/config-help.md
diff --git a/content/commands/config-help/syntax.svg b/content/commands/config-help/syntax.svg
deleted file mode 100644
index 1928cafc26..0000000000
--- a/content/commands/config-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/config-resetstat/index.md b/content/commands/config-resetstat.md
similarity index 100%
rename from content/commands/config-resetstat/index.md
rename to content/commands/config-resetstat.md
diff --git a/content/commands/config-resetstat/syntax.svg b/content/commands/config-resetstat/syntax.svg
deleted file mode 100644
index 954aaebb14..0000000000
--- a/content/commands/config-resetstat/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/config-rewrite/index.md b/content/commands/config-rewrite.md
similarity index 100%
rename from content/commands/config-rewrite/index.md
rename to content/commands/config-rewrite.md
diff --git a/content/commands/config-rewrite/syntax.svg b/content/commands/config-rewrite/syntax.svg
deleted file mode 100644
index 714b4d573a..0000000000
--- a/content/commands/config-rewrite/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/config-set/index.md b/content/commands/config-set.md
similarity index 100%
rename from content/commands/config-set/index.md
rename to content/commands/config-set.md
diff --git a/content/commands/config-set/syntax.svg b/content/commands/config-set/syntax.svg
deleted file mode 100644
index bdbb48cd4d..0000000000
--- a/content/commands/config-set/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/config/index.md b/content/commands/config.md
similarity index 100%
rename from content/commands/config/index.md
rename to content/commands/config.md
diff --git a/content/commands/config/syntax.svg b/content/commands/config/syntax.svg
deleted file mode 100644
index b0f546c56d..0000000000
--- a/content/commands/config/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/copy/index.md b/content/commands/copy.md
similarity index 100%
rename from content/commands/copy/index.md
rename to content/commands/copy.md
diff --git a/content/commands/copy/syntax.svg b/content/commands/copy/syntax.svg
deleted file mode 100644
index 92d6c5cfbe..0000000000
--- a/content/commands/copy/syntax.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/dbsize/index.md b/content/commands/dbsize.md
similarity index 100%
rename from content/commands/dbsize/index.md
rename to content/commands/dbsize.md
diff --git a/content/commands/dbsize/syntax.svg b/content/commands/dbsize/syntax.svg
deleted file mode 100644
index 26580cbc4b..0000000000
--- a/content/commands/dbsize/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/debug/index.md b/content/commands/debug.md
similarity index 100%
rename from content/commands/debug/index.md
rename to content/commands/debug.md
diff --git a/content/commands/debug/syntax.svg b/content/commands/debug/syntax.svg
deleted file mode 100644
index df573c3fd8..0000000000
--- a/content/commands/debug/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/decr/index.md b/content/commands/decr.md
similarity index 100%
rename from content/commands/decr/index.md
rename to content/commands/decr.md
diff --git a/content/commands/decr/syntax.svg b/content/commands/decr/syntax.svg
deleted file mode 100644
index cfc00fb19b..0000000000
--- a/content/commands/decr/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/decrby/index.md b/content/commands/decrby.md
similarity index 100%
rename from content/commands/decrby/index.md
rename to content/commands/decrby.md
diff --git a/content/commands/decrby/syntax.svg b/content/commands/decrby/syntax.svg
deleted file mode 100644
index 85b31d3ca6..0000000000
--- a/content/commands/decrby/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/del/index.md b/content/commands/del.md
similarity index 100%
rename from content/commands/del/index.md
rename to content/commands/del.md
diff --git a/content/commands/del/syntax.svg b/content/commands/del/syntax.svg
deleted file mode 100644
index ca36abdb80..0000000000
--- a/content/commands/del/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/discard/index.md b/content/commands/discard.md
similarity index 100%
rename from content/commands/discard/index.md
rename to content/commands/discard.md
diff --git a/content/commands/discard/syntax.svg b/content/commands/discard/syntax.svg
deleted file mode 100644
index f123352478..0000000000
--- a/content/commands/discard/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/dump/index.md b/content/commands/dump.md
similarity index 100%
rename from content/commands/dump/index.md
rename to content/commands/dump.md
diff --git a/content/commands/dump/syntax.svg b/content/commands/dump/syntax.svg
deleted file mode 100644
index 9779473082..0000000000
--- a/content/commands/dump/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/echo/index.md b/content/commands/echo.md
similarity index 100%
rename from content/commands/echo/index.md
rename to content/commands/echo.md
diff --git a/content/commands/echo/syntax.svg b/content/commands/echo/syntax.svg
deleted file mode 100644
index 58cf71ca27..0000000000
--- a/content/commands/echo/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/eval/index.md b/content/commands/eval.md
similarity index 100%
rename from content/commands/eval/index.md
rename to content/commands/eval.md
diff --git a/content/commands/eval/syntax.svg b/content/commands/eval/syntax.svg
deleted file mode 100644
index 6a5ffb97cc..0000000000
--- a/content/commands/eval/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/eval_ro/index.md b/content/commands/eval_ro.md
similarity index 100%
rename from content/commands/eval_ro/index.md
rename to content/commands/eval_ro.md
diff --git a/content/commands/eval_ro/syntax.svg b/content/commands/eval_ro/syntax.svg
deleted file mode 100644
index 95cfabfae0..0000000000
--- a/content/commands/eval_ro/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/evalsha/index.md b/content/commands/evalsha.md
similarity index 100%
rename from content/commands/evalsha/index.md
rename to content/commands/evalsha.md
diff --git a/content/commands/evalsha/syntax.svg b/content/commands/evalsha/syntax.svg
deleted file mode 100644
index 379a339bb1..0000000000
--- a/content/commands/evalsha/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/evalsha_ro/index.md b/content/commands/evalsha_ro.md
similarity index 100%
rename from content/commands/evalsha_ro/index.md
rename to content/commands/evalsha_ro.md
diff --git a/content/commands/evalsha_ro/syntax.svg b/content/commands/evalsha_ro/syntax.svg
deleted file mode 100644
index 3ca5814251..0000000000
--- a/content/commands/evalsha_ro/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/exec/index.md b/content/commands/exec.md
similarity index 100%
rename from content/commands/exec/index.md
rename to content/commands/exec.md
diff --git a/content/commands/exec/syntax.svg b/content/commands/exec/syntax.svg
deleted file mode 100644
index 8ca7717798..0000000000
--- a/content/commands/exec/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/exists/index.md b/content/commands/exists.md
similarity index 100%
rename from content/commands/exists/index.md
rename to content/commands/exists.md
diff --git a/content/commands/exists/syntax.svg b/content/commands/exists/syntax.svg
deleted file mode 100644
index 834b6bb6d0..0000000000
--- a/content/commands/exists/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/expire/index.md b/content/commands/expire.md
similarity index 100%
rename from content/commands/expire/index.md
rename to content/commands/expire.md
diff --git a/content/commands/expire/syntax.svg b/content/commands/expire/syntax.svg
deleted file mode 100644
index c0f5312153..0000000000
--- a/content/commands/expire/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/expireat/index.md b/content/commands/expireat.md
similarity index 100%
rename from content/commands/expireat/index.md
rename to content/commands/expireat.md
diff --git a/content/commands/expireat/syntax.svg b/content/commands/expireat/syntax.svg
deleted file mode 100644
index aac1fdeb83..0000000000
--- a/content/commands/expireat/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/expiretime/index.md b/content/commands/expiretime.md
similarity index 100%
rename from content/commands/expiretime/index.md
rename to content/commands/expiretime.md
diff --git a/content/commands/expiretime/syntax.svg b/content/commands/expiretime/syntax.svg
deleted file mode 100644
index d17aaccd45..0000000000
--- a/content/commands/expiretime/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/failover/index.md b/content/commands/failover.md
similarity index 100%
rename from content/commands/failover/index.md
rename to content/commands/failover.md
diff --git a/content/commands/failover/syntax.svg b/content/commands/failover/syntax.svg
deleted file mode 100644
index 9cf9bb35b1..0000000000
--- a/content/commands/failover/syntax.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/fcall/index.md b/content/commands/fcall.md
similarity index 100%
rename from content/commands/fcall/index.md
rename to content/commands/fcall.md
diff --git a/content/commands/fcall/syntax.svg b/content/commands/fcall/syntax.svg
deleted file mode 100644
index 5a6df557d5..0000000000
--- a/content/commands/fcall/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/fcall_ro/index.md b/content/commands/fcall_ro.md
similarity index 100%
rename from content/commands/fcall_ro/index.md
rename to content/commands/fcall_ro.md
diff --git a/content/commands/fcall_ro/syntax.svg b/content/commands/fcall_ro/syntax.svg
deleted file mode 100644
index 65b36c9241..0000000000
--- a/content/commands/fcall_ro/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/flushall/index.md b/content/commands/flushall.md
similarity index 100%
rename from content/commands/flushall/index.md
rename to content/commands/flushall.md
diff --git a/content/commands/flushall/syntax.svg b/content/commands/flushall/syntax.svg
deleted file mode 100644
index 65f3faed37..0000000000
--- a/content/commands/flushall/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/flushdb/index.md b/content/commands/flushdb.md
similarity index 100%
rename from content/commands/flushdb/index.md
rename to content/commands/flushdb.md
diff --git a/content/commands/flushdb/syntax.svg b/content/commands/flushdb/syntax.svg
deleted file mode 100644
index 2d89a09345..0000000000
--- a/content/commands/flushdb/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft._list/index.md b/content/commands/ft._list.md
similarity index 100%
rename from content/commands/ft._list/index.md
rename to content/commands/ft._list.md
diff --git a/content/commands/ft._list/syntax.svg b/content/commands/ft._list/syntax.svg
deleted file mode 100644
index cef4d1d211..0000000000
--- a/content/commands/ft._list/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.aggregate/index.md b/content/commands/ft.aggregate.md
similarity index 100%
rename from content/commands/ft.aggregate/index.md
rename to content/commands/ft.aggregate.md
diff --git a/content/commands/ft.aggregate/syntax.svg b/content/commands/ft.aggregate/syntax.svg
deleted file mode 100644
index 2f1470c400..0000000000
--- a/content/commands/ft.aggregate/syntax.svg
+++ /dev/null
@@ -1,135 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.aliasadd/index.md b/content/commands/ft.aliasadd.md
similarity index 100%
rename from content/commands/ft.aliasadd/index.md
rename to content/commands/ft.aliasadd.md
diff --git a/content/commands/ft.aliasadd/syntax.svg b/content/commands/ft.aliasadd/syntax.svg
deleted file mode 100644
index cf49463a4d..0000000000
--- a/content/commands/ft.aliasadd/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.aliasdel/index.md b/content/commands/ft.aliasdel.md
similarity index 100%
rename from content/commands/ft.aliasdel/index.md
rename to content/commands/ft.aliasdel.md
diff --git a/content/commands/ft.aliasdel/syntax.svg b/content/commands/ft.aliasdel/syntax.svg
deleted file mode 100644
index a5ca8c9b7e..0000000000
--- a/content/commands/ft.aliasdel/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.aliasupdate/index.md b/content/commands/ft.aliasupdate.md
similarity index 100%
rename from content/commands/ft.aliasupdate/index.md
rename to content/commands/ft.aliasupdate.md
diff --git a/content/commands/ft.aliasupdate/syntax.svg b/content/commands/ft.aliasupdate/syntax.svg
deleted file mode 100644
index 5d2f90258f..0000000000
--- a/content/commands/ft.aliasupdate/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.alter/index.md b/content/commands/ft.alter.md
similarity index 100%
rename from content/commands/ft.alter/index.md
rename to content/commands/ft.alter.md
diff --git a/content/commands/ft.alter/syntax.svg b/content/commands/ft.alter/syntax.svg
deleted file mode 100644
index cd3ed87a6b..0000000000
--- a/content/commands/ft.alter/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.config-get/index.md b/content/commands/ft.config-get.md
similarity index 100%
rename from content/commands/ft.config-get/index.md
rename to content/commands/ft.config-get.md
diff --git a/content/commands/ft.config-get/syntax.svg b/content/commands/ft.config-get/syntax.svg
deleted file mode 100644
index 8adb86545b..0000000000
--- a/content/commands/ft.config-get/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.config-help/index.md b/content/commands/ft.config-help.md
similarity index 100%
rename from content/commands/ft.config-help/index.md
rename to content/commands/ft.config-help.md
diff --git a/content/commands/ft.config-help/syntax.svg b/content/commands/ft.config-help/syntax.svg
deleted file mode 100644
index aabc8cd68b..0000000000
--- a/content/commands/ft.config-help/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.config-set/index.md b/content/commands/ft.config-set.md
similarity index 100%
rename from content/commands/ft.config-set/index.md
rename to content/commands/ft.config-set.md
diff --git a/content/commands/ft.config-set/syntax.svg b/content/commands/ft.config-set/syntax.svg
deleted file mode 100644
index 7d36cb6d4f..0000000000
--- a/content/commands/ft.config-set/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.create/index.md b/content/commands/ft.create.md
similarity index 100%
rename from content/commands/ft.create/index.md
rename to content/commands/ft.create.md
diff --git a/content/commands/ft.create/syntax.svg b/content/commands/ft.create/syntax.svg
deleted file mode 100644
index db1c25e245..0000000000
--- a/content/commands/ft.create/syntax.svg
+++ /dev/null
@@ -1,125 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.cursor-del/index.md b/content/commands/ft.cursor-del.md
similarity index 100%
rename from content/commands/ft.cursor-del/index.md
rename to content/commands/ft.cursor-del.md
diff --git a/content/commands/ft.cursor-del/syntax.svg b/content/commands/ft.cursor-del/syntax.svg
deleted file mode 100644
index a0445ffcde..0000000000
--- a/content/commands/ft.cursor-del/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.cursor-read/index.md b/content/commands/ft.cursor-read.md
similarity index 100%
rename from content/commands/ft.cursor-read/index.md
rename to content/commands/ft.cursor-read.md
diff --git a/content/commands/ft.cursor-read/syntax.svg b/content/commands/ft.cursor-read/syntax.svg
deleted file mode 100644
index e017d00723..0000000000
--- a/content/commands/ft.cursor-read/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.dictadd/index.md b/content/commands/ft.dictadd.md
similarity index 100%
rename from content/commands/ft.dictadd/index.md
rename to content/commands/ft.dictadd.md
diff --git a/content/commands/ft.dictadd/syntax.svg b/content/commands/ft.dictadd/syntax.svg
deleted file mode 100644
index 8fc2f59ffa..0000000000
--- a/content/commands/ft.dictadd/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.dictdel/index.md b/content/commands/ft.dictdel.md
similarity index 100%
rename from content/commands/ft.dictdel/index.md
rename to content/commands/ft.dictdel.md
diff --git a/content/commands/ft.dictdel/syntax.svg b/content/commands/ft.dictdel/syntax.svg
deleted file mode 100644
index fb10ef6cfa..0000000000
--- a/content/commands/ft.dictdel/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.dictdump/index.md b/content/commands/ft.dictdump.md
similarity index 100%
rename from content/commands/ft.dictdump/index.md
rename to content/commands/ft.dictdump.md
diff --git a/content/commands/ft.dictdump/syntax.svg b/content/commands/ft.dictdump/syntax.svg
deleted file mode 100644
index 4497782215..0000000000
--- a/content/commands/ft.dictdump/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.dropindex/index.md b/content/commands/ft.dropindex.md
similarity index 100%
rename from content/commands/ft.dropindex/index.md
rename to content/commands/ft.dropindex.md
diff --git a/content/commands/ft.dropindex/syntax.svg b/content/commands/ft.dropindex/syntax.svg
deleted file mode 100644
index 624063e45a..0000000000
--- a/content/commands/ft.dropindex/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.explain/index.md b/content/commands/ft.explain.md
similarity index 100%
rename from content/commands/ft.explain/index.md
rename to content/commands/ft.explain.md
diff --git a/content/commands/ft.explain/syntax.svg b/content/commands/ft.explain/syntax.svg
deleted file mode 100644
index 2e32f213d8..0000000000
--- a/content/commands/ft.explain/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.explaincli/index.md b/content/commands/ft.explaincli.md
similarity index 100%
rename from content/commands/ft.explaincli/index.md
rename to content/commands/ft.explaincli.md
diff --git a/content/commands/ft.explaincli/syntax.svg b/content/commands/ft.explaincli/syntax.svg
deleted file mode 100644
index df14d54a2a..0000000000
--- a/content/commands/ft.explaincli/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.info/index.md b/content/commands/ft.info.md
similarity index 100%
rename from content/commands/ft.info/index.md
rename to content/commands/ft.info.md
diff --git a/content/commands/ft.info/syntax.svg b/content/commands/ft.info/syntax.svg
deleted file mode 100644
index 847afdef31..0000000000
--- a/content/commands/ft.info/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.profile/index.md b/content/commands/ft.profile.md
similarity index 100%
rename from content/commands/ft.profile/index.md
rename to content/commands/ft.profile.md
diff --git a/content/commands/ft.profile/syntax.svg b/content/commands/ft.profile/syntax.svg
deleted file mode 100644
index ab5c8a7b86..0000000000
--- a/content/commands/ft.profile/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.search/index.md b/content/commands/ft.search.md
similarity index 100%
rename from content/commands/ft.search/index.md
rename to content/commands/ft.search.md
diff --git a/content/commands/ft.search/syntax.svg b/content/commands/ft.search/syntax.svg
deleted file mode 100644
index c239edcef7..0000000000
--- a/content/commands/ft.search/syntax.svg
+++ /dev/null
@@ -1,213 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.spellcheck/index.md b/content/commands/ft.spellcheck.md
similarity index 100%
rename from content/commands/ft.spellcheck/index.md
rename to content/commands/ft.spellcheck.md
diff --git a/content/commands/ft.spellcheck/syntax.svg b/content/commands/ft.spellcheck/syntax.svg
deleted file mode 100644
index 2d10a01be3..0000000000
--- a/content/commands/ft.spellcheck/syntax.svg
+++ /dev/null
@@ -1,35 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.sugadd/index.md b/content/commands/ft.sugadd.md
similarity index 100%
rename from content/commands/ft.sugadd/index.md
rename to content/commands/ft.sugadd.md
diff --git a/content/commands/ft.sugadd/syntax.svg b/content/commands/ft.sugadd/syntax.svg
deleted file mode 100644
index 9f489ea363..0000000000
--- a/content/commands/ft.sugadd/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.sugdel/index.md b/content/commands/ft.sugdel.md
similarity index 100%
rename from content/commands/ft.sugdel/index.md
rename to content/commands/ft.sugdel.md
diff --git a/content/commands/ft.sugdel/syntax.svg b/content/commands/ft.sugdel/syntax.svg
deleted file mode 100644
index fd626e4e4f..0000000000
--- a/content/commands/ft.sugdel/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.sugget/index.md b/content/commands/ft.sugget.md
similarity index 100%
rename from content/commands/ft.sugget/index.md
rename to content/commands/ft.sugget.md
diff --git a/content/commands/ft.sugget/syntax.svg b/content/commands/ft.sugget/syntax.svg
deleted file mode 100644
index 7a0c8ccc2c..0000000000
--- a/content/commands/ft.sugget/syntax.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.suglen/index.md b/content/commands/ft.suglen.md
similarity index 100%
rename from content/commands/ft.suglen/index.md
rename to content/commands/ft.suglen.md
diff --git a/content/commands/ft.suglen/syntax.svg b/content/commands/ft.suglen/syntax.svg
deleted file mode 100644
index ef375f3b4d..0000000000
--- a/content/commands/ft.suglen/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.syndump/index.md b/content/commands/ft.syndump.md
similarity index 100%
rename from content/commands/ft.syndump/index.md
rename to content/commands/ft.syndump.md
diff --git a/content/commands/ft.syndump/syntax.svg b/content/commands/ft.syndump/syntax.svg
deleted file mode 100644
index a825b6dcce..0000000000
--- a/content/commands/ft.syndump/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.synupdate/index.md b/content/commands/ft.synupdate.md
similarity index 100%
rename from content/commands/ft.synupdate/index.md
rename to content/commands/ft.synupdate.md
diff --git a/content/commands/ft.synupdate/syntax.svg b/content/commands/ft.synupdate/syntax.svg
deleted file mode 100644
index 22c772c1d9..0000000000
--- a/content/commands/ft.synupdate/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ft.tagvals/index.md b/content/commands/ft.tagvals.md
similarity index 100%
rename from content/commands/ft.tagvals/index.md
rename to content/commands/ft.tagvals.md
diff --git a/content/commands/ft.tagvals/syntax.svg b/content/commands/ft.tagvals/syntax.svg
deleted file mode 100644
index cf6e35ccf1..0000000000
--- a/content/commands/ft.tagvals/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-delete/index.md b/content/commands/function-delete.md
similarity index 100%
rename from content/commands/function-delete/index.md
rename to content/commands/function-delete.md
diff --git a/content/commands/function-delete/syntax.svg b/content/commands/function-delete/syntax.svg
deleted file mode 100644
index 9b5d7db8bc..0000000000
--- a/content/commands/function-delete/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-dump/index.md b/content/commands/function-dump.md
similarity index 100%
rename from content/commands/function-dump/index.md
rename to content/commands/function-dump.md
diff --git a/content/commands/function-dump/syntax.svg b/content/commands/function-dump/syntax.svg
deleted file mode 100644
index 546e27fd66..0000000000
--- a/content/commands/function-dump/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-flush/index.md b/content/commands/function-flush.md
similarity index 100%
rename from content/commands/function-flush/index.md
rename to content/commands/function-flush.md
diff --git a/content/commands/function-flush/syntax.svg b/content/commands/function-flush/syntax.svg
deleted file mode 100644
index ef31515c41..0000000000
--- a/content/commands/function-flush/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-help/index.md b/content/commands/function-help.md
similarity index 100%
rename from content/commands/function-help/index.md
rename to content/commands/function-help.md
diff --git a/content/commands/function-help/syntax.svg b/content/commands/function-help/syntax.svg
deleted file mode 100644
index ca70dd6414..0000000000
--- a/content/commands/function-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-kill/index.md b/content/commands/function-kill.md
similarity index 100%
rename from content/commands/function-kill/index.md
rename to content/commands/function-kill.md
diff --git a/content/commands/function-kill/syntax.svg b/content/commands/function-kill/syntax.svg
deleted file mode 100644
index 7725a223cb..0000000000
--- a/content/commands/function-kill/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-list/index.md b/content/commands/function-list.md
similarity index 100%
rename from content/commands/function-list/index.md
rename to content/commands/function-list.md
diff --git a/content/commands/function-list/syntax.svg b/content/commands/function-list/syntax.svg
deleted file mode 100644
index e04553c9fe..0000000000
--- a/content/commands/function-list/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-load/index.md b/content/commands/function-load.md
similarity index 100%
rename from content/commands/function-load/index.md
rename to content/commands/function-load.md
diff --git a/content/commands/function-load/syntax.svg b/content/commands/function-load/syntax.svg
deleted file mode 100644
index 33ad1f93fc..0000000000
--- a/content/commands/function-load/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-restore/index.md b/content/commands/function-restore.md
similarity index 100%
rename from content/commands/function-restore/index.md
rename to content/commands/function-restore.md
diff --git a/content/commands/function-restore/syntax.svg b/content/commands/function-restore/syntax.svg
deleted file mode 100644
index 8274d8e1f5..0000000000
--- a/content/commands/function-restore/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function-stats/index.md b/content/commands/function-stats.md
similarity index 100%
rename from content/commands/function-stats/index.md
rename to content/commands/function-stats.md
diff --git a/content/commands/function-stats/syntax.svg b/content/commands/function-stats/syntax.svg
deleted file mode 100644
index 89ee320b2e..0000000000
--- a/content/commands/function-stats/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/function/index.md b/content/commands/function.md
similarity index 100%
rename from content/commands/function/index.md
rename to content/commands/function.md
diff --git a/content/commands/function/syntax.svg b/content/commands/function/syntax.svg
deleted file mode 100644
index 28c07aec85..0000000000
--- a/content/commands/function/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/geoadd/index.md b/content/commands/geoadd.md
similarity index 100%
rename from content/commands/geoadd/index.md
rename to content/commands/geoadd.md
diff --git a/content/commands/geoadd/syntax.svg b/content/commands/geoadd/syntax.svg
deleted file mode 100644
index 275acd3dfb..0000000000
--- a/content/commands/geoadd/syntax.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/geodist/index.md b/content/commands/geodist.md
similarity index 100%
rename from content/commands/geodist/index.md
rename to content/commands/geodist.md
diff --git a/content/commands/geodist/syntax.svg b/content/commands/geodist/syntax.svg
deleted file mode 100644
index 13027661ca..0000000000
--- a/content/commands/geodist/syntax.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/geohash/index.md b/content/commands/geohash.md
similarity index 100%
rename from content/commands/geohash/index.md
rename to content/commands/geohash.md
diff --git a/content/commands/geohash/syntax.svg b/content/commands/geohash/syntax.svg
deleted file mode 100644
index b75fbee2dc..0000000000
--- a/content/commands/geohash/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/geopos/index.md b/content/commands/geopos.md
similarity index 100%
rename from content/commands/geopos/index.md
rename to content/commands/geopos.md
diff --git a/content/commands/geopos/syntax.svg b/content/commands/geopos/syntax.svg
deleted file mode 100644
index 73ce15de44..0000000000
--- a/content/commands/geopos/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/georadius/index.md b/content/commands/georadius.md
similarity index 100%
rename from content/commands/georadius/index.md
rename to content/commands/georadius.md
diff --git a/content/commands/georadius/syntax.svg b/content/commands/georadius/syntax.svg
deleted file mode 100644
index 1ca8407364..0000000000
--- a/content/commands/georadius/syntax.svg
+++ /dev/null
@@ -1,51 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/georadius_ro/index.md b/content/commands/georadius_ro.md
similarity index 100%
rename from content/commands/georadius_ro/index.md
rename to content/commands/georadius_ro.md
diff --git a/content/commands/georadius_ro/syntax.svg b/content/commands/georadius_ro/syntax.svg
deleted file mode 100644
index 2ff18a7cd7..0000000000
--- a/content/commands/georadius_ro/syntax.svg
+++ /dev/null
@@ -1,41 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/georadiusbymember/index.md b/content/commands/georadiusbymember.md
similarity index 100%
rename from content/commands/georadiusbymember/index.md
rename to content/commands/georadiusbymember.md
diff --git a/content/commands/georadiusbymember/syntax.svg b/content/commands/georadiusbymember/syntax.svg
deleted file mode 100644
index 508559fe52..0000000000
--- a/content/commands/georadiusbymember/syntax.svg
+++ /dev/null
@@ -1,49 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/georadiusbymember_ro/index.md b/content/commands/georadiusbymember_ro.md
similarity index 100%
rename from content/commands/georadiusbymember_ro/index.md
rename to content/commands/georadiusbymember_ro.md
diff --git a/content/commands/georadiusbymember_ro/syntax.svg b/content/commands/georadiusbymember_ro/syntax.svg
deleted file mode 100644
index c8a5cb4445..0000000000
--- a/content/commands/georadiusbymember_ro/syntax.svg
+++ /dev/null
@@ -1,40 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/geosearch/index.md b/content/commands/geosearch.md
similarity index 100%
rename from content/commands/geosearch/index.md
rename to content/commands/geosearch.md
diff --git a/content/commands/geosearch/syntax.svg b/content/commands/geosearch/syntax.svg
deleted file mode 100644
index 6e4076093d..0000000000
--- a/content/commands/geosearch/syntax.svg
+++ /dev/null
@@ -1,63 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/geosearchstore/index.md b/content/commands/geosearchstore.md
similarity index 100%
rename from content/commands/geosearchstore/index.md
rename to content/commands/geosearchstore.md
diff --git a/content/commands/geosearchstore/syntax.svg b/content/commands/geosearchstore/syntax.svg
deleted file mode 100644
index d664f5bdde..0000000000
--- a/content/commands/geosearchstore/syntax.svg
+++ /dev/null
@@ -1,58 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/get/index.md b/content/commands/get.md
similarity index 100%
rename from content/commands/get/index.md
rename to content/commands/get.md
diff --git a/content/commands/get/syntax.svg b/content/commands/get/syntax.svg
deleted file mode 100644
index 19cc799e27..0000000000
--- a/content/commands/get/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/getbit/index.md b/content/commands/getbit.md
similarity index 100%
rename from content/commands/getbit/index.md
rename to content/commands/getbit.md
diff --git a/content/commands/getbit/syntax.svg b/content/commands/getbit/syntax.svg
deleted file mode 100644
index 170d60d612..0000000000
--- a/content/commands/getbit/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/getdel/index.md b/content/commands/getdel.md
similarity index 100%
rename from content/commands/getdel/index.md
rename to content/commands/getdel.md
diff --git a/content/commands/getdel/syntax.svg b/content/commands/getdel/syntax.svg
deleted file mode 100644
index af2f9fcd84..0000000000
--- a/content/commands/getdel/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/getex/index.md b/content/commands/getex.md
similarity index 100%
rename from content/commands/getex/index.md
rename to content/commands/getex.md
diff --git a/content/commands/getex/syntax.svg b/content/commands/getex/syntax.svg
deleted file mode 100644
index d10d1fa047..0000000000
--- a/content/commands/getex/syntax.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/getrange/index.md b/content/commands/getrange.md
similarity index 100%
rename from content/commands/getrange/index.md
rename to content/commands/getrange.md
diff --git a/content/commands/getrange/syntax.svg b/content/commands/getrange/syntax.svg
deleted file mode 100644
index 1a4c3c6a6d..0000000000
--- a/content/commands/getrange/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/getset/index.md b/content/commands/getset.md
similarity index 100%
rename from content/commands/getset/index.md
rename to content/commands/getset.md
diff --git a/content/commands/getset/syntax.svg b/content/commands/getset/syntax.svg
deleted file mode 100644
index 2fada76069..0000000000
--- a/content/commands/getset/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hdel/index.md b/content/commands/hdel.md
similarity index 100%
rename from content/commands/hdel/index.md
rename to content/commands/hdel.md
diff --git a/content/commands/hdel/syntax.svg b/content/commands/hdel/syntax.svg
deleted file mode 100644
index 4bd423ea08..0000000000
--- a/content/commands/hdel/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hello/index.md b/content/commands/hello.md
similarity index 100%
rename from content/commands/hello/index.md
rename to content/commands/hello.md
diff --git a/content/commands/hello/syntax.svg b/content/commands/hello/syntax.svg
deleted file mode 100644
index bfc8d097e9..0000000000
--- a/content/commands/hello/syntax.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hexists/index.md b/content/commands/hexists.md
similarity index 100%
rename from content/commands/hexists/index.md
rename to content/commands/hexists.md
diff --git a/content/commands/hexists/syntax.svg b/content/commands/hexists/syntax.svg
deleted file mode 100644
index 6d14061635..0000000000
--- a/content/commands/hexists/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hexpire/index.md b/content/commands/hexpire.md
similarity index 100%
rename from content/commands/hexpire/index.md
rename to content/commands/hexpire.md
diff --git a/content/commands/hexpire/syntax.svg b/content/commands/hexpire/syntax.svg
deleted file mode 100644
index 5687b8db0c..0000000000
--- a/content/commands/hexpire/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hexpireat/index.md b/content/commands/hexpireat.md
similarity index 100%
rename from content/commands/hexpireat/index.md
rename to content/commands/hexpireat.md
diff --git a/content/commands/hexpireat/syntax.svg b/content/commands/hexpireat/syntax.svg
deleted file mode 100644
index 8df70cd04e..0000000000
--- a/content/commands/hexpireat/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hexpiretime/index.md b/content/commands/hexpiretime.md
similarity index 100%
rename from content/commands/hexpiretime/index.md
rename to content/commands/hexpiretime.md
diff --git a/content/commands/hexpiretime/syntax.svg b/content/commands/hexpiretime/syntax.svg
deleted file mode 100644
index 8059ae3b71..0000000000
--- a/content/commands/hexpiretime/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hget/index.md b/content/commands/hget.md
similarity index 100%
rename from content/commands/hget/index.md
rename to content/commands/hget.md
diff --git a/content/commands/hget/syntax.svg b/content/commands/hget/syntax.svg
deleted file mode 100644
index 87016658aa..0000000000
--- a/content/commands/hget/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hgetall/index.md b/content/commands/hgetall.md
similarity index 100%
rename from content/commands/hgetall/index.md
rename to content/commands/hgetall.md
diff --git a/content/commands/hgetall/syntax.svg b/content/commands/hgetall/syntax.svg
deleted file mode 100644
index a04acc8b13..0000000000
--- a/content/commands/hgetall/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hgetdel/index.md b/content/commands/hgetdel.md
similarity index 100%
rename from content/commands/hgetdel/index.md
rename to content/commands/hgetdel.md
diff --git a/content/commands/hgetdel/syntax.svg b/content/commands/hgetdel/syntax.svg
deleted file mode 100644
index 5687b8db0c..0000000000
--- a/content/commands/hgetdel/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hgetex/index.md b/content/commands/hgetex.md
similarity index 100%
rename from content/commands/hgetex/index.md
rename to content/commands/hgetex.md
diff --git a/content/commands/hgetex/syntax.svg b/content/commands/hgetex/syntax.svg
deleted file mode 100644
index 5687b8db0c..0000000000
--- a/content/commands/hgetex/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hincrby/index.md b/content/commands/hincrby.md
similarity index 100%
rename from content/commands/hincrby/index.md
rename to content/commands/hincrby.md
diff --git a/content/commands/hincrby/syntax.svg b/content/commands/hincrby/syntax.svg
deleted file mode 100644
index a939371434..0000000000
--- a/content/commands/hincrby/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hincrbyfloat/index.md b/content/commands/hincrbyfloat.md
similarity index 100%
rename from content/commands/hincrbyfloat/index.md
rename to content/commands/hincrbyfloat.md
diff --git a/content/commands/hincrbyfloat/syntax.svg b/content/commands/hincrbyfloat/syntax.svg
deleted file mode 100644
index c53829b243..0000000000
--- a/content/commands/hincrbyfloat/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hkeys/index.md b/content/commands/hkeys.md
similarity index 100%
rename from content/commands/hkeys/index.md
rename to content/commands/hkeys.md
diff --git a/content/commands/hkeys/syntax.svg b/content/commands/hkeys/syntax.svg
deleted file mode 100644
index a386314c6d..0000000000
--- a/content/commands/hkeys/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hlen/index.md b/content/commands/hlen.md
similarity index 100%
rename from content/commands/hlen/index.md
rename to content/commands/hlen.md
diff --git a/content/commands/hlen/syntax.svg b/content/commands/hlen/syntax.svg
deleted file mode 100644
index d4460818cc..0000000000
--- a/content/commands/hlen/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hmget/index.md b/content/commands/hmget.md
similarity index 100%
rename from content/commands/hmget/index.md
rename to content/commands/hmget.md
diff --git a/content/commands/hmget/syntax.svg b/content/commands/hmget/syntax.svg
deleted file mode 100644
index 3a8af6e133..0000000000
--- a/content/commands/hmget/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hmset/index.md b/content/commands/hmset.md
similarity index 100%
rename from content/commands/hmset/index.md
rename to content/commands/hmset.md
diff --git a/content/commands/hmset/syntax.svg b/content/commands/hmset/syntax.svg
deleted file mode 100644
index 637e5b22f4..0000000000
--- a/content/commands/hmset/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hpersist/index.md b/content/commands/hpersist.md
similarity index 100%
rename from content/commands/hpersist/index.md
rename to content/commands/hpersist.md
diff --git a/content/commands/hpersist/syntax.svg b/content/commands/hpersist/syntax.svg
deleted file mode 100644
index 6a6a3e12ff..0000000000
--- a/content/commands/hpersist/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hpexpire/index.md b/content/commands/hpexpire.md
similarity index 100%
rename from content/commands/hpexpire/index.md
rename to content/commands/hpexpire.md
diff --git a/content/commands/hpexpire/syntax.svg b/content/commands/hpexpire/syntax.svg
deleted file mode 100644
index 65643683de..0000000000
--- a/content/commands/hpexpire/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hpexpireat/index.md b/content/commands/hpexpireat.md
similarity index 100%
rename from content/commands/hpexpireat/index.md
rename to content/commands/hpexpireat.md
diff --git a/content/commands/hpexpireat/syntax.svg b/content/commands/hpexpireat/syntax.svg
deleted file mode 100644
index b587f203a4..0000000000
--- a/content/commands/hpexpireat/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hpexpiretime/index.md b/content/commands/hpexpiretime.md
similarity index 100%
rename from content/commands/hpexpiretime/index.md
rename to content/commands/hpexpiretime.md
diff --git a/content/commands/hpexpiretime/syntax.svg b/content/commands/hpexpiretime/syntax.svg
deleted file mode 100644
index b552114c2f..0000000000
--- a/content/commands/hpexpiretime/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hpttl/index.md b/content/commands/hpttl.md
similarity index 100%
rename from content/commands/hpttl/index.md
rename to content/commands/hpttl.md
diff --git a/content/commands/hpttl/syntax.svg b/content/commands/hpttl/syntax.svg
deleted file mode 100644
index 04072fc39a..0000000000
--- a/content/commands/hpttl/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hrandfield/index.md b/content/commands/hrandfield.md
similarity index 100%
rename from content/commands/hrandfield/index.md
rename to content/commands/hrandfield.md
diff --git a/content/commands/hrandfield/syntax.svg b/content/commands/hrandfield/syntax.svg
deleted file mode 100644
index 00513cebee..0000000000
--- a/content/commands/hrandfield/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hscan/index.md b/content/commands/hscan.md
similarity index 100%
rename from content/commands/hscan/index.md
rename to content/commands/hscan.md
diff --git a/content/commands/hscan/syntax.svg b/content/commands/hscan/syntax.svg
deleted file mode 100644
index 81b0faba6a..0000000000
--- a/content/commands/hscan/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hset/index.md b/content/commands/hset.md
similarity index 100%
rename from content/commands/hset/index.md
rename to content/commands/hset.md
diff --git a/content/commands/hset/syntax.svg b/content/commands/hset/syntax.svg
deleted file mode 100644
index f62fd52f2e..0000000000
--- a/content/commands/hset/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hsetex/index.md b/content/commands/hsetex.md
similarity index 100%
rename from content/commands/hsetex/index.md
rename to content/commands/hsetex.md
diff --git a/content/commands/hsetex/syntax.svg b/content/commands/hsetex/syntax.svg
deleted file mode 100644
index 5687b8db0c..0000000000
--- a/content/commands/hsetex/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hsetnx/index.md b/content/commands/hsetnx.md
similarity index 100%
rename from content/commands/hsetnx/index.md
rename to content/commands/hsetnx.md
diff --git a/content/commands/hsetnx/syntax.svg b/content/commands/hsetnx/syntax.svg
deleted file mode 100644
index ebaf1a9ed2..0000000000
--- a/content/commands/hsetnx/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hstrlen/index.md b/content/commands/hstrlen.md
similarity index 100%
rename from content/commands/hstrlen/index.md
rename to content/commands/hstrlen.md
diff --git a/content/commands/hstrlen/syntax.svg b/content/commands/hstrlen/syntax.svg
deleted file mode 100644
index 70750392b9..0000000000
--- a/content/commands/hstrlen/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/httl/index.md b/content/commands/httl.md
similarity index 100%
rename from content/commands/httl/index.md
rename to content/commands/httl.md
diff --git a/content/commands/httl/syntax.svg b/content/commands/httl/syntax.svg
deleted file mode 100644
index 593de61a72..0000000000
--- a/content/commands/httl/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/hvals/index.md b/content/commands/hvals.md
similarity index 100%
rename from content/commands/hvals/index.md
rename to content/commands/hvals.md
diff --git a/content/commands/hvals/syntax.svg b/content/commands/hvals/syntax.svg
deleted file mode 100644
index 1a88122b54..0000000000
--- a/content/commands/hvals/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/incr/index.md b/content/commands/incr.md
similarity index 100%
rename from content/commands/incr/index.md
rename to content/commands/incr.md
diff --git a/content/commands/incr/syntax.svg b/content/commands/incr/syntax.svg
deleted file mode 100644
index 50a5bbefcf..0000000000
--- a/content/commands/incr/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/incrby/index.md b/content/commands/incrby.md
similarity index 100%
rename from content/commands/incrby/index.md
rename to content/commands/incrby.md
diff --git a/content/commands/incrby/syntax.svg b/content/commands/incrby/syntax.svg
deleted file mode 100644
index 933e971515..0000000000
--- a/content/commands/incrby/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/incrbyfloat/index.md b/content/commands/incrbyfloat.md
similarity index 100%
rename from content/commands/incrbyfloat/index.md
rename to content/commands/incrbyfloat.md
diff --git a/content/commands/incrbyfloat/syntax.svg b/content/commands/incrbyfloat/syntax.svg
deleted file mode 100644
index 56cbabfd50..0000000000
--- a/content/commands/incrbyfloat/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/info/index.md b/content/commands/info.md
similarity index 100%
rename from content/commands/info/index.md
rename to content/commands/info.md
diff --git a/content/commands/info/syntax.svg b/content/commands/info/syntax.svg
deleted file mode 100644
index 43fbfe8025..0000000000
--- a/content/commands/info/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.arrappend/index.md b/content/commands/json.arrappend.md
similarity index 100%
rename from content/commands/json.arrappend/index.md
rename to content/commands/json.arrappend.md
diff --git a/content/commands/json.arrappend/syntax.svg b/content/commands/json.arrappend/syntax.svg
deleted file mode 100644
index fe298ef712..0000000000
--- a/content/commands/json.arrappend/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.arrindex/index.md b/content/commands/json.arrindex.md
similarity index 100%
rename from content/commands/json.arrindex/index.md
rename to content/commands/json.arrindex.md
diff --git a/content/commands/json.arrindex/syntax.svg b/content/commands/json.arrindex/syntax.svg
deleted file mode 100644
index 15cf468418..0000000000
--- a/content/commands/json.arrindex/syntax.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.arrinsert/index.md b/content/commands/json.arrinsert.md
similarity index 100%
rename from content/commands/json.arrinsert/index.md
rename to content/commands/json.arrinsert.md
diff --git a/content/commands/json.arrinsert/syntax.svg b/content/commands/json.arrinsert/syntax.svg
deleted file mode 100644
index 5e47511db7..0000000000
--- a/content/commands/json.arrinsert/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.arrlen/index.md b/content/commands/json.arrlen.md
similarity index 100%
rename from content/commands/json.arrlen/index.md
rename to content/commands/json.arrlen.md
diff --git a/content/commands/json.arrlen/syntax.svg b/content/commands/json.arrlen/syntax.svg
deleted file mode 100644
index f8e0fbfe49..0000000000
--- a/content/commands/json.arrlen/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.arrpop/index.md b/content/commands/json.arrpop.md
similarity index 100%
rename from content/commands/json.arrpop/index.md
rename to content/commands/json.arrpop.md
diff --git a/content/commands/json.arrpop/syntax.svg b/content/commands/json.arrpop/syntax.svg
deleted file mode 100644
index a5b72d720e..0000000000
--- a/content/commands/json.arrpop/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.arrtrim/index.md b/content/commands/json.arrtrim.md
similarity index 100%
rename from content/commands/json.arrtrim/index.md
rename to content/commands/json.arrtrim.md
diff --git a/content/commands/json.arrtrim/syntax.svg b/content/commands/json.arrtrim/syntax.svg
deleted file mode 100644
index c26d0c20bf..0000000000
--- a/content/commands/json.arrtrim/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.clear/index.md b/content/commands/json.clear.md
similarity index 100%
rename from content/commands/json.clear/index.md
rename to content/commands/json.clear.md
diff --git a/content/commands/json.clear/syntax.svg b/content/commands/json.clear/syntax.svg
deleted file mode 100644
index 350074067b..0000000000
--- a/content/commands/json.clear/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.debug-help/index.md b/content/commands/json.debug-help.md
similarity index 100%
rename from content/commands/json.debug-help/index.md
rename to content/commands/json.debug-help.md
diff --git a/content/commands/json.debug-help/syntax.svg b/content/commands/json.debug-help/syntax.svg
deleted file mode 100644
index 2e47803d44..0000000000
--- a/content/commands/json.debug-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.debug-memory/index.md b/content/commands/json.debug-memory.md
similarity index 100%
rename from content/commands/json.debug-memory/index.md
rename to content/commands/json.debug-memory.md
diff --git a/content/commands/json.debug-memory/syntax.svg b/content/commands/json.debug-memory/syntax.svg
deleted file mode 100644
index 5f4e1d0de3..0000000000
--- a/content/commands/json.debug-memory/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.debug/index.md b/content/commands/json.debug.md
similarity index 100%
rename from content/commands/json.debug/index.md
rename to content/commands/json.debug.md
diff --git a/content/commands/json.debug/syntax.svg b/content/commands/json.debug/syntax.svg
deleted file mode 100644
index ca2a35640e..0000000000
--- a/content/commands/json.debug/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.del/index.md b/content/commands/json.del.md
similarity index 100%
rename from content/commands/json.del/index.md
rename to content/commands/json.del.md
diff --git a/content/commands/json.del/syntax.svg b/content/commands/json.del/syntax.svg
deleted file mode 100644
index a44b7c6407..0000000000
--- a/content/commands/json.del/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.forget/index.md b/content/commands/json.forget.md
similarity index 100%
rename from content/commands/json.forget/index.md
rename to content/commands/json.forget.md
diff --git a/content/commands/json.forget/syntax.svg b/content/commands/json.forget/syntax.svg
deleted file mode 100644
index 94647b8eab..0000000000
--- a/content/commands/json.forget/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.get/index.md b/content/commands/json.get.md
similarity index 100%
rename from content/commands/json.get/index.md
rename to content/commands/json.get.md
diff --git a/content/commands/json.get/syntax.svg b/content/commands/json.get/syntax.svg
deleted file mode 100644
index 2604f794ef..0000000000
--- a/content/commands/json.get/syntax.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.merge/index.md b/content/commands/json.merge.md
similarity index 100%
rename from content/commands/json.merge/index.md
rename to content/commands/json.merge.md
diff --git a/content/commands/json.merge/syntax.svg b/content/commands/json.merge/syntax.svg
deleted file mode 100644
index 2e547b1a2c..0000000000
--- a/content/commands/json.merge/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.mget/index.md b/content/commands/json.mget.md
similarity index 100%
rename from content/commands/json.mget/index.md
rename to content/commands/json.mget.md
diff --git a/content/commands/json.mget/syntax.svg b/content/commands/json.mget/syntax.svg
deleted file mode 100644
index 9d6235191e..0000000000
--- a/content/commands/json.mget/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.mset/index.md b/content/commands/json.mset.md
similarity index 100%
rename from content/commands/json.mset/index.md
rename to content/commands/json.mset.md
diff --git a/content/commands/json.mset/syntax.svg b/content/commands/json.mset/syntax.svg
deleted file mode 100644
index 3765261e0e..0000000000
--- a/content/commands/json.mset/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.numincrby/index.md b/content/commands/json.numincrby.md
similarity index 100%
rename from content/commands/json.numincrby/index.md
rename to content/commands/json.numincrby.md
diff --git a/content/commands/json.numincrby/syntax.svg b/content/commands/json.numincrby/syntax.svg
deleted file mode 100644
index 57d7216a9d..0000000000
--- a/content/commands/json.numincrby/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.nummultby/index.md b/content/commands/json.nummultby.md
similarity index 100%
rename from content/commands/json.nummultby/index.md
rename to content/commands/json.nummultby.md
diff --git a/content/commands/json.nummultby/syntax.svg b/content/commands/json.nummultby/syntax.svg
deleted file mode 100644
index c24119df54..0000000000
--- a/content/commands/json.nummultby/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.objkeys/index.md b/content/commands/json.objkeys.md
similarity index 100%
rename from content/commands/json.objkeys/index.md
rename to content/commands/json.objkeys.md
diff --git a/content/commands/json.objkeys/syntax.svg b/content/commands/json.objkeys/syntax.svg
deleted file mode 100644
index 927430fbaf..0000000000
--- a/content/commands/json.objkeys/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.objlen/index.md b/content/commands/json.objlen.md
similarity index 100%
rename from content/commands/json.objlen/index.md
rename to content/commands/json.objlen.md
diff --git a/content/commands/json.objlen/syntax.svg b/content/commands/json.objlen/syntax.svg
deleted file mode 100644
index 3db957875a..0000000000
--- a/content/commands/json.objlen/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.resp/index.md b/content/commands/json.resp.md
similarity index 100%
rename from content/commands/json.resp/index.md
rename to content/commands/json.resp.md
diff --git a/content/commands/json.resp/syntax.svg b/content/commands/json.resp/syntax.svg
deleted file mode 100644
index c0572dc60b..0000000000
--- a/content/commands/json.resp/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.set/index.md b/content/commands/json.set.md
similarity index 100%
rename from content/commands/json.set/index.md
rename to content/commands/json.set.md
diff --git a/content/commands/json.set/syntax.svg b/content/commands/json.set/syntax.svg
deleted file mode 100644
index 5c43163c19..0000000000
--- a/content/commands/json.set/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.strappend/index.md b/content/commands/json.strappend.md
similarity index 100%
rename from content/commands/json.strappend/index.md
rename to content/commands/json.strappend.md
diff --git a/content/commands/json.strappend/syntax.svg b/content/commands/json.strappend/syntax.svg
deleted file mode 100644
index 19e64aefc1..0000000000
--- a/content/commands/json.strappend/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.strlen/index.md b/content/commands/json.strlen.md
similarity index 100%
rename from content/commands/json.strlen/index.md
rename to content/commands/json.strlen.md
diff --git a/content/commands/json.strlen/syntax.svg b/content/commands/json.strlen/syntax.svg
deleted file mode 100644
index 5dac51b32e..0000000000
--- a/content/commands/json.strlen/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.toggle/index.md b/content/commands/json.toggle.md
similarity index 100%
rename from content/commands/json.toggle/index.md
rename to content/commands/json.toggle.md
diff --git a/content/commands/json.toggle/syntax.svg b/content/commands/json.toggle/syntax.svg
deleted file mode 100644
index be63bbfa30..0000000000
--- a/content/commands/json.toggle/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/json.type/index.md b/content/commands/json.type.md
similarity index 100%
rename from content/commands/json.type/index.md
rename to content/commands/json.type.md
diff --git a/content/commands/json.type/syntax.svg b/content/commands/json.type/syntax.svg
deleted file mode 100644
index ce14d0aae7..0000000000
--- a/content/commands/json.type/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/keys/index.md b/content/commands/keys.md
similarity index 100%
rename from content/commands/keys/index.md
rename to content/commands/keys.md
diff --git a/content/commands/keys/syntax.svg b/content/commands/keys/syntax.svg
deleted file mode 100644
index 56e74d35ea..0000000000
--- a/content/commands/keys/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lastsave/index.md b/content/commands/lastsave.md
similarity index 100%
rename from content/commands/lastsave/index.md
rename to content/commands/lastsave.md
diff --git a/content/commands/lastsave/syntax.svg b/content/commands/lastsave/syntax.svg
deleted file mode 100644
index c4ffbe8821..0000000000
--- a/content/commands/lastsave/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-doctor/index.md b/content/commands/latency-doctor.md
similarity index 100%
rename from content/commands/latency-doctor/index.md
rename to content/commands/latency-doctor.md
diff --git a/content/commands/latency-doctor/syntax.svg b/content/commands/latency-doctor/syntax.svg
deleted file mode 100644
index 94f76096b9..0000000000
--- a/content/commands/latency-doctor/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-graph/index.md b/content/commands/latency-graph.md
similarity index 100%
rename from content/commands/latency-graph/index.md
rename to content/commands/latency-graph.md
diff --git a/content/commands/latency-graph/syntax.svg b/content/commands/latency-graph/syntax.svg
deleted file mode 100644
index 05813d8b6b..0000000000
--- a/content/commands/latency-graph/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-help/index.md b/content/commands/latency-help.md
similarity index 100%
rename from content/commands/latency-help/index.md
rename to content/commands/latency-help.md
diff --git a/content/commands/latency-help/syntax.svg b/content/commands/latency-help/syntax.svg
deleted file mode 100644
index 039a02e9e2..0000000000
--- a/content/commands/latency-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-histogram/index.md b/content/commands/latency-histogram.md
similarity index 100%
rename from content/commands/latency-histogram/index.md
rename to content/commands/latency-histogram.md
diff --git a/content/commands/latency-histogram/syntax.svg b/content/commands/latency-histogram/syntax.svg
deleted file mode 100644
index 28c76dbbb0..0000000000
--- a/content/commands/latency-histogram/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-history/index.md b/content/commands/latency-history.md
similarity index 100%
rename from content/commands/latency-history/index.md
rename to content/commands/latency-history.md
diff --git a/content/commands/latency-history/syntax.svg b/content/commands/latency-history/syntax.svg
deleted file mode 100644
index 4e701a9871..0000000000
--- a/content/commands/latency-history/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-latest/index.md b/content/commands/latency-latest.md
similarity index 100%
rename from content/commands/latency-latest/index.md
rename to content/commands/latency-latest.md
diff --git a/content/commands/latency-latest/syntax.svg b/content/commands/latency-latest/syntax.svg
deleted file mode 100644
index 36479e184b..0000000000
--- a/content/commands/latency-latest/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency-reset/index.md b/content/commands/latency-reset.md
similarity index 100%
rename from content/commands/latency-reset/index.md
rename to content/commands/latency-reset.md
diff --git a/content/commands/latency-reset/syntax.svg b/content/commands/latency-reset/syntax.svg
deleted file mode 100644
index 4c9a13e0ab..0000000000
--- a/content/commands/latency-reset/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/latency/index.md b/content/commands/latency.md
similarity index 100%
rename from content/commands/latency/index.md
rename to content/commands/latency.md
diff --git a/content/commands/latency/syntax.svg b/content/commands/latency/syntax.svg
deleted file mode 100644
index da669b87f7..0000000000
--- a/content/commands/latency/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lcs/index.md b/content/commands/lcs.md
similarity index 100%
rename from content/commands/lcs/index.md
rename to content/commands/lcs.md
diff --git a/content/commands/lcs/syntax.svg b/content/commands/lcs/syntax.svg
deleted file mode 100644
index 7665a3d864..0000000000
--- a/content/commands/lcs/syntax.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lindex/index.md b/content/commands/lindex.md
similarity index 100%
rename from content/commands/lindex/index.md
rename to content/commands/lindex.md
diff --git a/content/commands/lindex/syntax.svg b/content/commands/lindex/syntax.svg
deleted file mode 100644
index 05cc45c77f..0000000000
--- a/content/commands/lindex/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/linsert/index.md b/content/commands/linsert.md
similarity index 100%
rename from content/commands/linsert/index.md
rename to content/commands/linsert.md
diff --git a/content/commands/linsert/syntax.svg b/content/commands/linsert/syntax.svg
deleted file mode 100644
index 7b8e972af9..0000000000
--- a/content/commands/linsert/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/llen/index.md b/content/commands/llen.md
similarity index 100%
rename from content/commands/llen/index.md
rename to content/commands/llen.md
diff --git a/content/commands/llen/syntax.svg b/content/commands/llen/syntax.svg
deleted file mode 100644
index 54d54a1407..0000000000
--- a/content/commands/llen/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lmove/index.md b/content/commands/lmove.md
similarity index 100%
rename from content/commands/lmove/index.md
rename to content/commands/lmove.md
diff --git a/content/commands/lmove/syntax.svg b/content/commands/lmove/syntax.svg
deleted file mode 100644
index 5cdc6abeed..0000000000
--- a/content/commands/lmove/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lmpop/index.md b/content/commands/lmpop.md
similarity index 100%
rename from content/commands/lmpop/index.md
rename to content/commands/lmpop.md
diff --git a/content/commands/lmpop/syntax.svg b/content/commands/lmpop/syntax.svg
deleted file mode 100644
index 10aaf61eac..0000000000
--- a/content/commands/lmpop/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lolwut/index.md b/content/commands/lolwut.md
similarity index 100%
rename from content/commands/lolwut/index.md
rename to content/commands/lolwut.md
diff --git a/content/commands/lolwut/syntax.svg b/content/commands/lolwut/syntax.svg
deleted file mode 100644
index b4845b1001..0000000000
--- a/content/commands/lolwut/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lpop/index.md b/content/commands/lpop.md
similarity index 100%
rename from content/commands/lpop/index.md
rename to content/commands/lpop.md
diff --git a/content/commands/lpop/syntax.svg b/content/commands/lpop/syntax.svg
deleted file mode 100644
index 62dec628bc..0000000000
--- a/content/commands/lpop/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lpos/index.md b/content/commands/lpos.md
similarity index 100%
rename from content/commands/lpos/index.md
rename to content/commands/lpos.md
diff --git a/content/commands/lpos/syntax.svg b/content/commands/lpos/syntax.svg
deleted file mode 100644
index 329b6d7c54..0000000000
--- a/content/commands/lpos/syntax.svg
+++ /dev/null
@@ -1,25 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lpush/index.md b/content/commands/lpush.md
similarity index 100%
rename from content/commands/lpush/index.md
rename to content/commands/lpush.md
diff --git a/content/commands/lpush/syntax.svg b/content/commands/lpush/syntax.svg
deleted file mode 100644
index 24f26d58ee..0000000000
--- a/content/commands/lpush/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lpushx/index.md b/content/commands/lpushx.md
similarity index 100%
rename from content/commands/lpushx/index.md
rename to content/commands/lpushx.md
diff --git a/content/commands/lpushx/syntax.svg b/content/commands/lpushx/syntax.svg
deleted file mode 100644
index b492cc8d09..0000000000
--- a/content/commands/lpushx/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lrange/index.md b/content/commands/lrange.md
similarity index 100%
rename from content/commands/lrange/index.md
rename to content/commands/lrange.md
diff --git a/content/commands/lrange/syntax.svg b/content/commands/lrange/syntax.svg
deleted file mode 100644
index 36db286ace..0000000000
--- a/content/commands/lrange/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lrem/index.md b/content/commands/lrem.md
similarity index 100%
rename from content/commands/lrem/index.md
rename to content/commands/lrem.md
diff --git a/content/commands/lrem/syntax.svg b/content/commands/lrem/syntax.svg
deleted file mode 100644
index 5733c1e4d4..0000000000
--- a/content/commands/lrem/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/lset/index.md b/content/commands/lset.md
similarity index 100%
rename from content/commands/lset/index.md
rename to content/commands/lset.md
diff --git a/content/commands/lset/syntax.svg b/content/commands/lset/syntax.svg
deleted file mode 100644
index c3241e1467..0000000000
--- a/content/commands/lset/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ltrim/index.md b/content/commands/ltrim.md
similarity index 100%
rename from content/commands/ltrim/index.md
rename to content/commands/ltrim.md
diff --git a/content/commands/ltrim/syntax.svg b/content/commands/ltrim/syntax.svg
deleted file mode 100644
index dcfad5621f..0000000000
--- a/content/commands/ltrim/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory-doctor/index.md b/content/commands/memory-doctor.md
similarity index 100%
rename from content/commands/memory-doctor/index.md
rename to content/commands/memory-doctor.md
diff --git a/content/commands/memory-doctor/syntax.svg b/content/commands/memory-doctor/syntax.svg
deleted file mode 100644
index 83ec822c68..0000000000
--- a/content/commands/memory-doctor/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory-help/index.md b/content/commands/memory-help.md
similarity index 100%
rename from content/commands/memory-help/index.md
rename to content/commands/memory-help.md
diff --git a/content/commands/memory-help/syntax.svg b/content/commands/memory-help/syntax.svg
deleted file mode 100644
index 7de5f078ec..0000000000
--- a/content/commands/memory-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory-malloc-stats/index.md b/content/commands/memory-malloc-stats.md
similarity index 100%
rename from content/commands/memory-malloc-stats/index.md
rename to content/commands/memory-malloc-stats.md
diff --git a/content/commands/memory-malloc-stats/syntax.svg b/content/commands/memory-malloc-stats/syntax.svg
deleted file mode 100644
index db76226736..0000000000
--- a/content/commands/memory-malloc-stats/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory-purge/index.md b/content/commands/memory-purge.md
similarity index 100%
rename from content/commands/memory-purge/index.md
rename to content/commands/memory-purge.md
diff --git a/content/commands/memory-purge/syntax.svg b/content/commands/memory-purge/syntax.svg
deleted file mode 100644
index e7b8a32ff9..0000000000
--- a/content/commands/memory-purge/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory-stats/index.md b/content/commands/memory-stats.md
similarity index 100%
rename from content/commands/memory-stats/index.md
rename to content/commands/memory-stats.md
diff --git a/content/commands/memory-stats/syntax.svg b/content/commands/memory-stats/syntax.svg
deleted file mode 100644
index 8655e9e27c..0000000000
--- a/content/commands/memory-stats/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory-usage/index.md b/content/commands/memory-usage.md
similarity index 100%
rename from content/commands/memory-usage/index.md
rename to content/commands/memory-usage.md
diff --git a/content/commands/memory-usage/syntax.svg b/content/commands/memory-usage/syntax.svg
deleted file mode 100644
index ee5ff5d0d9..0000000000
--- a/content/commands/memory-usage/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/memory/index.md b/content/commands/memory.md
similarity index 100%
rename from content/commands/memory/index.md
rename to content/commands/memory.md
diff --git a/content/commands/memory/syntax.svg b/content/commands/memory/syntax.svg
deleted file mode 100644
index 322376e522..0000000000
--- a/content/commands/memory/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/mget/index.md b/content/commands/mget.md
similarity index 100%
rename from content/commands/mget/index.md
rename to content/commands/mget.md
diff --git a/content/commands/mget/syntax.svg b/content/commands/mget/syntax.svg
deleted file mode 100644
index ed35d06216..0000000000
--- a/content/commands/mget/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/migrate/index.md b/content/commands/migrate.md
similarity index 100%
rename from content/commands/migrate/index.md
rename to content/commands/migrate.md
diff --git a/content/commands/migrate/syntax.svg b/content/commands/migrate/syntax.svg
deleted file mode 100644
index 7eefb41b8c..0000000000
--- a/content/commands/migrate/syntax.svg
+++ /dev/null
@@ -1,38 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/module-help/index.md b/content/commands/module-help.md
similarity index 100%
rename from content/commands/module-help/index.md
rename to content/commands/module-help.md
diff --git a/content/commands/module-help/syntax.svg b/content/commands/module-help/syntax.svg
deleted file mode 100644
index 7730331e84..0000000000
--- a/content/commands/module-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/module-list/index.md b/content/commands/module-list.md
similarity index 100%
rename from content/commands/module-list/index.md
rename to content/commands/module-list.md
diff --git a/content/commands/module-list/syntax.svg b/content/commands/module-list/syntax.svg
deleted file mode 100644
index 69d1a44d6d..0000000000
--- a/content/commands/module-list/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/module-load/index.md b/content/commands/module-load.md
similarity index 100%
rename from content/commands/module-load/index.md
rename to content/commands/module-load.md
diff --git a/content/commands/module-load/syntax.svg b/content/commands/module-load/syntax.svg
deleted file mode 100644
index b0b1c6bd7c..0000000000
--- a/content/commands/module-load/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/module-loadex/index.md b/content/commands/module-loadex.md
similarity index 100%
rename from content/commands/module-loadex/index.md
rename to content/commands/module-loadex.md
diff --git a/content/commands/module-loadex/syntax.svg b/content/commands/module-loadex/syntax.svg
deleted file mode 100644
index 72baa82b96..0000000000
--- a/content/commands/module-loadex/syntax.svg
+++ /dev/null
@@ -1,22 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/module-unload/index.md b/content/commands/module-unload.md
similarity index 100%
rename from content/commands/module-unload/index.md
rename to content/commands/module-unload.md
diff --git a/content/commands/module-unload/syntax.svg b/content/commands/module-unload/syntax.svg
deleted file mode 100644
index 46523d1e38..0000000000
--- a/content/commands/module-unload/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/module/index.md b/content/commands/module.md
similarity index 100%
rename from content/commands/module/index.md
rename to content/commands/module.md
diff --git a/content/commands/module/syntax.svg b/content/commands/module/syntax.svg
deleted file mode 100644
index e95e01d37e..0000000000
--- a/content/commands/module/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/monitor/index.md b/content/commands/monitor.md
similarity index 100%
rename from content/commands/monitor/index.md
rename to content/commands/monitor.md
diff --git a/content/commands/monitor/syntax.svg b/content/commands/monitor/syntax.svg
deleted file mode 100644
index c75a1c0b17..0000000000
--- a/content/commands/monitor/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/move/index.md b/content/commands/move.md
similarity index 100%
rename from content/commands/move/index.md
rename to content/commands/move.md
diff --git a/content/commands/move/syntax.svg b/content/commands/move/syntax.svg
deleted file mode 100644
index 4ab16fb0e5..0000000000
--- a/content/commands/move/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/mset/index.md b/content/commands/mset.md
similarity index 100%
rename from content/commands/mset/index.md
rename to content/commands/mset.md
diff --git a/content/commands/mset/syntax.svg b/content/commands/mset/syntax.svg
deleted file mode 100644
index baabf4290c..0000000000
--- a/content/commands/mset/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/msetnx/index.md b/content/commands/msetnx.md
similarity index 100%
rename from content/commands/msetnx/index.md
rename to content/commands/msetnx.md
diff --git a/content/commands/msetnx/syntax.svg b/content/commands/msetnx/syntax.svg
deleted file mode 100644
index e92a9286ca..0000000000
--- a/content/commands/msetnx/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/multi/index.md b/content/commands/multi.md
similarity index 100%
rename from content/commands/multi/index.md
rename to content/commands/multi.md
diff --git a/content/commands/multi/syntax.svg b/content/commands/multi/syntax.svg
deleted file mode 100644
index 2469e25cb2..0000000000
--- a/content/commands/multi/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/object-encoding/index.md b/content/commands/object-encoding.md
similarity index 100%
rename from content/commands/object-encoding/index.md
rename to content/commands/object-encoding.md
diff --git a/content/commands/object-encoding/syntax.svg b/content/commands/object-encoding/syntax.svg
deleted file mode 100644
index b6b8bfc61e..0000000000
--- a/content/commands/object-encoding/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/object-freq/index.md b/content/commands/object-freq.md
similarity index 100%
rename from content/commands/object-freq/index.md
rename to content/commands/object-freq.md
diff --git a/content/commands/object-freq/syntax.svg b/content/commands/object-freq/syntax.svg
deleted file mode 100644
index f107ae1c7c..0000000000
--- a/content/commands/object-freq/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/object-help/index.md b/content/commands/object-help.md
similarity index 100%
rename from content/commands/object-help/index.md
rename to content/commands/object-help.md
diff --git a/content/commands/object-help/syntax.svg b/content/commands/object-help/syntax.svg
deleted file mode 100644
index fbf393c1ed..0000000000
--- a/content/commands/object-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/object-idletime/index.md b/content/commands/object-idletime.md
similarity index 100%
rename from content/commands/object-idletime/index.md
rename to content/commands/object-idletime.md
diff --git a/content/commands/object-idletime/syntax.svg b/content/commands/object-idletime/syntax.svg
deleted file mode 100644
index 53b0b6a11c..0000000000
--- a/content/commands/object-idletime/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/object-refcount/index.md b/content/commands/object-refcount.md
similarity index 100%
rename from content/commands/object-refcount/index.md
rename to content/commands/object-refcount.md
diff --git a/content/commands/object-refcount/syntax.svg b/content/commands/object-refcount/syntax.svg
deleted file mode 100644
index d1d01142de..0000000000
--- a/content/commands/object-refcount/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/object/index.md b/content/commands/object.md
similarity index 100%
rename from content/commands/object/index.md
rename to content/commands/object.md
diff --git a/content/commands/object/syntax.svg b/content/commands/object/syntax.svg
deleted file mode 100644
index 18504e8052..0000000000
--- a/content/commands/object/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/persist/index.md b/content/commands/persist.md
similarity index 100%
rename from content/commands/persist/index.md
rename to content/commands/persist.md
diff --git a/content/commands/persist/syntax.svg b/content/commands/persist/syntax.svg
deleted file mode 100644
index b6f6ff8b7d..0000000000
--- a/content/commands/persist/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pexpire/index.md b/content/commands/pexpire.md
similarity index 100%
rename from content/commands/pexpire/index.md
rename to content/commands/pexpire.md
diff --git a/content/commands/pexpire/syntax.svg b/content/commands/pexpire/syntax.svg
deleted file mode 100644
index 471d95a2af..0000000000
--- a/content/commands/pexpire/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pexpireat/index.md b/content/commands/pexpireat.md
similarity index 100%
rename from content/commands/pexpireat/index.md
rename to content/commands/pexpireat.md
diff --git a/content/commands/pexpireat/syntax.svg b/content/commands/pexpireat/syntax.svg
deleted file mode 100644
index e06effaf14..0000000000
--- a/content/commands/pexpireat/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pexpiretime/index.md b/content/commands/pexpiretime.md
similarity index 100%
rename from content/commands/pexpiretime/index.md
rename to content/commands/pexpiretime.md
diff --git a/content/commands/pexpiretime/syntax.svg b/content/commands/pexpiretime/syntax.svg
deleted file mode 100644
index e9f64d9d16..0000000000
--- a/content/commands/pexpiretime/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pfadd/index.md b/content/commands/pfadd.md
similarity index 100%
rename from content/commands/pfadd/index.md
rename to content/commands/pfadd.md
diff --git a/content/commands/pfadd/syntax.svg b/content/commands/pfadd/syntax.svg
deleted file mode 100644
index dbc7dabf12..0000000000
--- a/content/commands/pfadd/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pfcount/index.md b/content/commands/pfcount.md
similarity index 100%
rename from content/commands/pfcount/index.md
rename to content/commands/pfcount.md
diff --git a/content/commands/pfcount/syntax.svg b/content/commands/pfcount/syntax.svg
deleted file mode 100644
index f9a145d9bc..0000000000
--- a/content/commands/pfcount/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pfdebug/index.md b/content/commands/pfdebug.md
similarity index 100%
rename from content/commands/pfdebug/index.md
rename to content/commands/pfdebug.md
diff --git a/content/commands/pfdebug/syntax.svg b/content/commands/pfdebug/syntax.svg
deleted file mode 100644
index 906f26784d..0000000000
--- a/content/commands/pfdebug/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pfmerge/index.md b/content/commands/pfmerge.md
similarity index 100%
rename from content/commands/pfmerge/index.md
rename to content/commands/pfmerge.md
diff --git a/content/commands/pfmerge/syntax.svg b/content/commands/pfmerge/syntax.svg
deleted file mode 100644
index 48051977f1..0000000000
--- a/content/commands/pfmerge/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pfselftest/index.md b/content/commands/pfselftest.md
similarity index 100%
rename from content/commands/pfselftest/index.md
rename to content/commands/pfselftest.md
diff --git a/content/commands/pfselftest/syntax.svg b/content/commands/pfselftest/syntax.svg
deleted file mode 100644
index 9ef6778d0e..0000000000
--- a/content/commands/pfselftest/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ping/index.md b/content/commands/ping.md
similarity index 100%
rename from content/commands/ping/index.md
rename to content/commands/ping.md
diff --git a/content/commands/ping/syntax.svg b/content/commands/ping/syntax.svg
deleted file mode 100644
index 1e9368c735..0000000000
--- a/content/commands/ping/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/psetex/index.md b/content/commands/psetex.md
similarity index 100%
rename from content/commands/psetex/index.md
rename to content/commands/psetex.md
diff --git a/content/commands/psetex/syntax.svg b/content/commands/psetex/syntax.svg
deleted file mode 100644
index db3062ca14..0000000000
--- a/content/commands/psetex/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/psubscribe/index.md b/content/commands/psubscribe.md
similarity index 100%
rename from content/commands/psubscribe/index.md
rename to content/commands/psubscribe.md
diff --git a/content/commands/psubscribe/syntax.svg b/content/commands/psubscribe/syntax.svg
deleted file mode 100644
index 0a19df2f83..0000000000
--- a/content/commands/psubscribe/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/psync/index.md b/content/commands/psync.md
similarity index 100%
rename from content/commands/psync/index.md
rename to content/commands/psync.md
diff --git a/content/commands/psync/syntax.svg b/content/commands/psync/syntax.svg
deleted file mode 100644
index e136236de7..0000000000
--- a/content/commands/psync/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pttl/index.md b/content/commands/pttl.md
similarity index 100%
rename from content/commands/pttl/index.md
rename to content/commands/pttl.md
diff --git a/content/commands/pttl/syntax.svg b/content/commands/pttl/syntax.svg
deleted file mode 100644
index 9c152af5e2..0000000000
--- a/content/commands/pttl/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/publish/index.md b/content/commands/publish.md
similarity index 100%
rename from content/commands/publish/index.md
rename to content/commands/publish.md
diff --git a/content/commands/publish/syntax.svg b/content/commands/publish/syntax.svg
deleted file mode 100644
index 762272fbf1..0000000000
--- a/content/commands/publish/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub-channels/index.md b/content/commands/pubsub-channels.md
similarity index 100%
rename from content/commands/pubsub-channels/index.md
rename to content/commands/pubsub-channels.md
diff --git a/content/commands/pubsub-channels/syntax.svg b/content/commands/pubsub-channels/syntax.svg
deleted file mode 100644
index dc36a21de0..0000000000
--- a/content/commands/pubsub-channels/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub-help/index.md b/content/commands/pubsub-help.md
similarity index 100%
rename from content/commands/pubsub-help/index.md
rename to content/commands/pubsub-help.md
diff --git a/content/commands/pubsub-help/syntax.svg b/content/commands/pubsub-help/syntax.svg
deleted file mode 100644
index 9305bc0e33..0000000000
--- a/content/commands/pubsub-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub-numpat/index.md b/content/commands/pubsub-numpat.md
similarity index 100%
rename from content/commands/pubsub-numpat/index.md
rename to content/commands/pubsub-numpat.md
diff --git a/content/commands/pubsub-numpat/syntax.svg b/content/commands/pubsub-numpat/syntax.svg
deleted file mode 100644
index 567a77a252..0000000000
--- a/content/commands/pubsub-numpat/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub-numsub/index.md b/content/commands/pubsub-numsub.md
similarity index 100%
rename from content/commands/pubsub-numsub/index.md
rename to content/commands/pubsub-numsub.md
diff --git a/content/commands/pubsub-numsub/syntax.svg b/content/commands/pubsub-numsub/syntax.svg
deleted file mode 100644
index 64fe6c5758..0000000000
--- a/content/commands/pubsub-numsub/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub-shardchannels/index.md b/content/commands/pubsub-shardchannels.md
similarity index 100%
rename from content/commands/pubsub-shardchannels/index.md
rename to content/commands/pubsub-shardchannels.md
diff --git a/content/commands/pubsub-shardchannels/syntax.svg b/content/commands/pubsub-shardchannels/syntax.svg
deleted file mode 100644
index bc701ffb51..0000000000
--- a/content/commands/pubsub-shardchannels/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub-shardnumsub/index.md b/content/commands/pubsub-shardnumsub.md
similarity index 100%
rename from content/commands/pubsub-shardnumsub/index.md
rename to content/commands/pubsub-shardnumsub.md
diff --git a/content/commands/pubsub-shardnumsub/syntax.svg b/content/commands/pubsub-shardnumsub/syntax.svg
deleted file mode 100644
index e78a90379b..0000000000
--- a/content/commands/pubsub-shardnumsub/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/pubsub/index.md b/content/commands/pubsub.md
similarity index 100%
rename from content/commands/pubsub/index.md
rename to content/commands/pubsub.md
diff --git a/content/commands/pubsub/syntax.svg b/content/commands/pubsub/syntax.svg
deleted file mode 100644
index 7675fcc6ff..0000000000
--- a/content/commands/pubsub/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/punsubscribe/index.md b/content/commands/punsubscribe.md
similarity index 100%
rename from content/commands/punsubscribe/index.md
rename to content/commands/punsubscribe.md
diff --git a/content/commands/punsubscribe/syntax.svg b/content/commands/punsubscribe/syntax.svg
deleted file mode 100644
index 128acfb0e9..0000000000
--- a/content/commands/punsubscribe/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/quit/index.md b/content/commands/quit.md
similarity index 100%
rename from content/commands/quit/index.md
rename to content/commands/quit.md
diff --git a/content/commands/quit/syntax.svg b/content/commands/quit/syntax.svg
deleted file mode 100644
index 26fac64b28..0000000000
--- a/content/commands/quit/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/randomkey/index.md b/content/commands/randomkey.md
similarity index 100%
rename from content/commands/randomkey/index.md
rename to content/commands/randomkey.md
diff --git a/content/commands/randomkey/syntax.svg b/content/commands/randomkey/syntax.svg
deleted file mode 100644
index 4b61f5e87b..0000000000
--- a/content/commands/randomkey/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/readonly/index.md b/content/commands/readonly.md
similarity index 100%
rename from content/commands/readonly/index.md
rename to content/commands/readonly.md
diff --git a/content/commands/readonly/syntax.svg b/content/commands/readonly/syntax.svg
deleted file mode 100644
index cdde589673..0000000000
--- a/content/commands/readonly/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/readwrite/index.md b/content/commands/readwrite.md
similarity index 100%
rename from content/commands/readwrite/index.md
rename to content/commands/readwrite.md
diff --git a/content/commands/readwrite/syntax.svg b/content/commands/readwrite/syntax.svg
deleted file mode 100644
index 6868a2acec..0000000000
--- a/content/commands/readwrite/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/rename/index.md b/content/commands/rename.md
similarity index 100%
rename from content/commands/rename/index.md
rename to content/commands/rename.md
diff --git a/content/commands/rename/syntax.svg b/content/commands/rename/syntax.svg
deleted file mode 100644
index 32895916f9..0000000000
--- a/content/commands/rename/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/renamenx/index.md b/content/commands/renamenx.md
similarity index 100%
rename from content/commands/renamenx/index.md
rename to content/commands/renamenx.md
diff --git a/content/commands/renamenx/syntax.svg b/content/commands/renamenx/syntax.svg
deleted file mode 100644
index 76b0b21c23..0000000000
--- a/content/commands/renamenx/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/replconf/index.md b/content/commands/replconf.md
similarity index 100%
rename from content/commands/replconf/index.md
rename to content/commands/replconf.md
diff --git a/content/commands/replconf/syntax.svg b/content/commands/replconf/syntax.svg
deleted file mode 100644
index f11bb4f5fa..0000000000
--- a/content/commands/replconf/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/replicaof/index.md b/content/commands/replicaof.md
similarity index 100%
rename from content/commands/replicaof/index.md
rename to content/commands/replicaof.md
diff --git a/content/commands/replicaof/syntax.svg b/content/commands/replicaof/syntax.svg
deleted file mode 100644
index d46b85a217..0000000000
--- a/content/commands/replicaof/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/reset/index.md b/content/commands/reset.md
similarity index 100%
rename from content/commands/reset/index.md
rename to content/commands/reset.md
diff --git a/content/commands/reset/syntax.svg b/content/commands/reset/syntax.svg
deleted file mode 100644
index facf0e5356..0000000000
--- a/content/commands/reset/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/restore-asking/index.md b/content/commands/restore-asking.md
similarity index 100%
rename from content/commands/restore-asking/index.md
rename to content/commands/restore-asking.md
diff --git a/content/commands/restore-asking/syntax.svg b/content/commands/restore-asking/syntax.svg
deleted file mode 100644
index 7276a81bbf..0000000000
--- a/content/commands/restore-asking/syntax.svg
+++ /dev/null
@@ -1,27 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/restore/index.md b/content/commands/restore.md
similarity index 100%
rename from content/commands/restore/index.md
rename to content/commands/restore.md
diff --git a/content/commands/restore/syntax.svg b/content/commands/restore/syntax.svg
deleted file mode 100644
index 2af5aa7c73..0000000000
--- a/content/commands/restore/syntax.svg
+++ /dev/null
@@ -1,27 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/role/index.md b/content/commands/role.md
similarity index 100%
rename from content/commands/role/index.md
rename to content/commands/role.md
diff --git a/content/commands/role/syntax.svg b/content/commands/role/syntax.svg
deleted file mode 100644
index d086dd8313..0000000000
--- a/content/commands/role/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/rpop/index.md b/content/commands/rpop.md
similarity index 100%
rename from content/commands/rpop/index.md
rename to content/commands/rpop.md
diff --git a/content/commands/rpop/syntax.svg b/content/commands/rpop/syntax.svg
deleted file mode 100644
index 1d3432b80a..0000000000
--- a/content/commands/rpop/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/rpoplpush/index.md b/content/commands/rpoplpush.md
similarity index 100%
rename from content/commands/rpoplpush/index.md
rename to content/commands/rpoplpush.md
diff --git a/content/commands/rpoplpush/syntax.svg b/content/commands/rpoplpush/syntax.svg
deleted file mode 100644
index f1a020707f..0000000000
--- a/content/commands/rpoplpush/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/rpush/index.md b/content/commands/rpush.md
similarity index 100%
rename from content/commands/rpush/index.md
rename to content/commands/rpush.md
diff --git a/content/commands/rpush/syntax.svg b/content/commands/rpush/syntax.svg
deleted file mode 100644
index 48d2f3495d..0000000000
--- a/content/commands/rpush/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/rpushx/index.md b/content/commands/rpushx.md
similarity index 100%
rename from content/commands/rpushx/index.md
rename to content/commands/rpushx.md
diff --git a/content/commands/rpushx/syntax.svg b/content/commands/rpushx/syntax.svg
deleted file mode 100644
index 2109e3a059..0000000000
--- a/content/commands/rpushx/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sadd/index.md b/content/commands/sadd.md
similarity index 100%
rename from content/commands/sadd/index.md
rename to content/commands/sadd.md
diff --git a/content/commands/sadd/syntax.svg b/content/commands/sadd/syntax.svg
deleted file mode 100644
index 0b25ea53d4..0000000000
--- a/content/commands/sadd/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/save/index.md b/content/commands/save.md
similarity index 100%
rename from content/commands/save/index.md
rename to content/commands/save.md
diff --git a/content/commands/save/syntax.svg b/content/commands/save/syntax.svg
deleted file mode 100644
index a40cd77e34..0000000000
--- a/content/commands/save/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/scan/index.md b/content/commands/scan.md
similarity index 100%
rename from content/commands/scan/index.md
rename to content/commands/scan.md
diff --git a/content/commands/scan/syntax.svg b/content/commands/scan/syntax.svg
deleted file mode 100644
index 9c7ec903e6..0000000000
--- a/content/commands/scan/syntax.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/scard/index.md b/content/commands/scard.md
similarity index 100%
rename from content/commands/scard/index.md
rename to content/commands/scard.md
diff --git a/content/commands/scard/syntax.svg b/content/commands/scard/syntax.svg
deleted file mode 100644
index db23ad46a8..0000000000
--- a/content/commands/scard/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script-debug/index.md b/content/commands/script-debug.md
similarity index 100%
rename from content/commands/script-debug/index.md
rename to content/commands/script-debug.md
diff --git a/content/commands/script-debug/syntax.svg b/content/commands/script-debug/syntax.svg
deleted file mode 100644
index 5185e8d1b6..0000000000
--- a/content/commands/script-debug/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script-exists/index.md b/content/commands/script-exists.md
similarity index 100%
rename from content/commands/script-exists/index.md
rename to content/commands/script-exists.md
diff --git a/content/commands/script-exists/syntax.svg b/content/commands/script-exists/syntax.svg
deleted file mode 100644
index 05a4c0e446..0000000000
--- a/content/commands/script-exists/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script-flush/index.md b/content/commands/script-flush.md
similarity index 100%
rename from content/commands/script-flush/index.md
rename to content/commands/script-flush.md
diff --git a/content/commands/script-flush/syntax.svg b/content/commands/script-flush/syntax.svg
deleted file mode 100644
index b69524c0e9..0000000000
--- a/content/commands/script-flush/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script-help/index.md b/content/commands/script-help.md
similarity index 100%
rename from content/commands/script-help/index.md
rename to content/commands/script-help.md
diff --git a/content/commands/script-help/syntax.svg b/content/commands/script-help/syntax.svg
deleted file mode 100644
index 0827a9ff97..0000000000
--- a/content/commands/script-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script-kill/index.md b/content/commands/script-kill.md
similarity index 100%
rename from content/commands/script-kill/index.md
rename to content/commands/script-kill.md
diff --git a/content/commands/script-kill/syntax.svg b/content/commands/script-kill/syntax.svg
deleted file mode 100644
index 00027d78bd..0000000000
--- a/content/commands/script-kill/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script-load/index.md b/content/commands/script-load.md
similarity index 100%
rename from content/commands/script-load/index.md
rename to content/commands/script-load.md
diff --git a/content/commands/script-load/syntax.svg b/content/commands/script-load/syntax.svg
deleted file mode 100644
index 5fadbac440..0000000000
--- a/content/commands/script-load/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/script/index.md b/content/commands/script.md
similarity index 100%
rename from content/commands/script/index.md
rename to content/commands/script.md
diff --git a/content/commands/script/syntax.svg b/content/commands/script/syntax.svg
deleted file mode 100644
index 850ab2635a..0000000000
--- a/content/commands/script/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sdiff/index.md b/content/commands/sdiff.md
similarity index 100%
rename from content/commands/sdiff/index.md
rename to content/commands/sdiff.md
diff --git a/content/commands/sdiff/syntax.svg b/content/commands/sdiff/syntax.svg
deleted file mode 100644
index 55245385e5..0000000000
--- a/content/commands/sdiff/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sdiffstore/index.md b/content/commands/sdiffstore.md
similarity index 100%
rename from content/commands/sdiffstore/index.md
rename to content/commands/sdiffstore.md
diff --git a/content/commands/sdiffstore/syntax.svg b/content/commands/sdiffstore/syntax.svg
deleted file mode 100644
index 72546a4afd..0000000000
--- a/content/commands/sdiffstore/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/select/index.md b/content/commands/select.md
similarity index 100%
rename from content/commands/select/index.md
rename to content/commands/select.md
diff --git a/content/commands/select/syntax.svg b/content/commands/select/syntax.svg
deleted file mode 100644
index 16d1f4f7df..0000000000
--- a/content/commands/select/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/set/index.md b/content/commands/set.md
similarity index 100%
rename from content/commands/set/index.md
rename to content/commands/set.md
diff --git a/content/commands/set/syntax.svg b/content/commands/set/syntax.svg
deleted file mode 100644
index 8370bdc608..0000000000
--- a/content/commands/set/syntax.svg
+++ /dev/null
@@ -1,34 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/setbit/index.md b/content/commands/setbit.md
similarity index 100%
rename from content/commands/setbit/index.md
rename to content/commands/setbit.md
diff --git a/content/commands/setbit/syntax.svg b/content/commands/setbit/syntax.svg
deleted file mode 100644
index 6677420eca..0000000000
--- a/content/commands/setbit/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/setex/index.md b/content/commands/setex.md
similarity index 100%
rename from content/commands/setex/index.md
rename to content/commands/setex.md
diff --git a/content/commands/setex/syntax.svg b/content/commands/setex/syntax.svg
deleted file mode 100644
index afe4ce408d..0000000000
--- a/content/commands/setex/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/setnx/index.md b/content/commands/setnx.md
similarity index 100%
rename from content/commands/setnx/index.md
rename to content/commands/setnx.md
diff --git a/content/commands/setnx/syntax.svg b/content/commands/setnx/syntax.svg
deleted file mode 100644
index 4c3634dcb1..0000000000
--- a/content/commands/setnx/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/setrange/index.md b/content/commands/setrange.md
similarity index 100%
rename from content/commands/setrange/index.md
rename to content/commands/setrange.md
diff --git a/content/commands/setrange/syntax.svg b/content/commands/setrange/syntax.svg
deleted file mode 100644
index a0455f692b..0000000000
--- a/content/commands/setrange/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/shutdown/index.md b/content/commands/shutdown.md
similarity index 100%
rename from content/commands/shutdown/index.md
rename to content/commands/shutdown.md
diff --git a/content/commands/shutdown/syntax.svg b/content/commands/shutdown/syntax.svg
deleted file mode 100644
index cd69cdcaf5..0000000000
--- a/content/commands/shutdown/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sinter/index.md b/content/commands/sinter.md
similarity index 100%
rename from content/commands/sinter/index.md
rename to content/commands/sinter.md
diff --git a/content/commands/sinter/syntax.svg b/content/commands/sinter/syntax.svg
deleted file mode 100644
index 7795014833..0000000000
--- a/content/commands/sinter/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sintercard/index.md b/content/commands/sintercard.md
similarity index 100%
rename from content/commands/sintercard/index.md
rename to content/commands/sintercard.md
diff --git a/content/commands/sintercard/syntax.svg b/content/commands/sintercard/syntax.svg
deleted file mode 100644
index d5d20b6434..0000000000
--- a/content/commands/sintercard/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sinterstore/index.md b/content/commands/sinterstore.md
similarity index 100%
rename from content/commands/sinterstore/index.md
rename to content/commands/sinterstore.md
diff --git a/content/commands/sinterstore/syntax.svg b/content/commands/sinterstore/syntax.svg
deleted file mode 100644
index 81ec5a3d2f..0000000000
--- a/content/commands/sinterstore/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sismember/index.md b/content/commands/sismember.md
similarity index 100%
rename from content/commands/sismember/index.md
rename to content/commands/sismember.md
diff --git a/content/commands/sismember/syntax.svg b/content/commands/sismember/syntax.svg
deleted file mode 100644
index 15e8e33038..0000000000
--- a/content/commands/sismember/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/slaveof/index.md b/content/commands/slaveof.md
similarity index 100%
rename from content/commands/slaveof/index.md
rename to content/commands/slaveof.md
diff --git a/content/commands/slaveof/syntax.svg b/content/commands/slaveof/syntax.svg
deleted file mode 100644
index e2786488c5..0000000000
--- a/content/commands/slaveof/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/slowlog-get/index.md b/content/commands/slowlog-get.md
similarity index 100%
rename from content/commands/slowlog-get/index.md
rename to content/commands/slowlog-get.md
diff --git a/content/commands/slowlog-get/syntax.svg b/content/commands/slowlog-get/syntax.svg
deleted file mode 100644
index 59ff51511c..0000000000
--- a/content/commands/slowlog-get/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/slowlog-help/index.md b/content/commands/slowlog-help.md
similarity index 100%
rename from content/commands/slowlog-help/index.md
rename to content/commands/slowlog-help.md
diff --git a/content/commands/slowlog-help/syntax.svg b/content/commands/slowlog-help/syntax.svg
deleted file mode 100644
index 37dfbbe4c4..0000000000
--- a/content/commands/slowlog-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/slowlog-len/index.md b/content/commands/slowlog-len.md
similarity index 100%
rename from content/commands/slowlog-len/index.md
rename to content/commands/slowlog-len.md
diff --git a/content/commands/slowlog-len/syntax.svg b/content/commands/slowlog-len/syntax.svg
deleted file mode 100644
index 0040fbed76..0000000000
--- a/content/commands/slowlog-len/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/slowlog-reset/index.md b/content/commands/slowlog-reset.md
similarity index 100%
rename from content/commands/slowlog-reset/index.md
rename to content/commands/slowlog-reset.md
diff --git a/content/commands/slowlog-reset/syntax.svg b/content/commands/slowlog-reset/syntax.svg
deleted file mode 100644
index 3447716a4b..0000000000
--- a/content/commands/slowlog-reset/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/slowlog/index.md b/content/commands/slowlog.md
similarity index 100%
rename from content/commands/slowlog/index.md
rename to content/commands/slowlog.md
diff --git a/content/commands/slowlog/syntax.svg b/content/commands/slowlog/syntax.svg
deleted file mode 100644
index ce8b760fc2..0000000000
--- a/content/commands/slowlog/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/smembers/index.md b/content/commands/smembers.md
similarity index 100%
rename from content/commands/smembers/index.md
rename to content/commands/smembers.md
diff --git a/content/commands/smembers/syntax.svg b/content/commands/smembers/syntax.svg
deleted file mode 100644
index 3aeba4e508..0000000000
--- a/content/commands/smembers/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/smismember/index.md b/content/commands/smismember.md
similarity index 100%
rename from content/commands/smismember/index.md
rename to content/commands/smismember.md
diff --git a/content/commands/smismember/syntax.svg b/content/commands/smismember/syntax.svg
deleted file mode 100644
index 70a3cbd6d4..0000000000
--- a/content/commands/smismember/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/smove/index.md b/content/commands/smove.md
similarity index 100%
rename from content/commands/smove/index.md
rename to content/commands/smove.md
diff --git a/content/commands/smove/syntax.svg b/content/commands/smove/syntax.svg
deleted file mode 100644
index f416f47833..0000000000
--- a/content/commands/smove/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sort/index.md b/content/commands/sort.md
similarity index 100%
rename from content/commands/sort/index.md
rename to content/commands/sort.md
diff --git a/content/commands/sort/syntax.svg b/content/commands/sort/syntax.svg
deleted file mode 100644
index 04b0e940e2..0000000000
--- a/content/commands/sort/syntax.svg
+++ /dev/null
@@ -1,42 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sort_ro/index.md b/content/commands/sort_ro.md
similarity index 100%
rename from content/commands/sort_ro/index.md
rename to content/commands/sort_ro.md
diff --git a/content/commands/sort_ro/syntax.svg b/content/commands/sort_ro/syntax.svg
deleted file mode 100644
index a03a829433..0000000000
--- a/content/commands/sort_ro/syntax.svg
+++ /dev/null
@@ -1,36 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/spop/index.md b/content/commands/spop.md
similarity index 100%
rename from content/commands/spop/index.md
rename to content/commands/spop.md
diff --git a/content/commands/spop/syntax.svg b/content/commands/spop/syntax.svg
deleted file mode 100644
index ed3f55313d..0000000000
--- a/content/commands/spop/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/spublish/index.md b/content/commands/spublish.md
similarity index 100%
rename from content/commands/spublish/index.md
rename to content/commands/spublish.md
diff --git a/content/commands/spublish/syntax.svg b/content/commands/spublish/syntax.svg
deleted file mode 100644
index 3d5222be90..0000000000
--- a/content/commands/spublish/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/srandmember/index.md b/content/commands/srandmember.md
similarity index 100%
rename from content/commands/srandmember/index.md
rename to content/commands/srandmember.md
diff --git a/content/commands/srandmember/syntax.svg b/content/commands/srandmember/syntax.svg
deleted file mode 100644
index 4731f51dc5..0000000000
--- a/content/commands/srandmember/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/srem/index.md b/content/commands/srem.md
similarity index 100%
rename from content/commands/srem/index.md
rename to content/commands/srem.md
diff --git a/content/commands/srem/syntax.svg b/content/commands/srem/syntax.svg
deleted file mode 100644
index 887b7910bb..0000000000
--- a/content/commands/srem/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sscan/index.md b/content/commands/sscan.md
similarity index 100%
rename from content/commands/sscan/index.md
rename to content/commands/sscan.md
diff --git a/content/commands/sscan/syntax.svg b/content/commands/sscan/syntax.svg
deleted file mode 100644
index ede07d9cc2..0000000000
--- a/content/commands/sscan/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ssubscribe/index.md b/content/commands/ssubscribe.md
similarity index 100%
rename from content/commands/ssubscribe/index.md
rename to content/commands/ssubscribe.md
diff --git a/content/commands/ssubscribe/syntax.svg b/content/commands/ssubscribe/syntax.svg
deleted file mode 100644
index 31512140df..0000000000
--- a/content/commands/ssubscribe/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/strlen/index.md b/content/commands/strlen.md
similarity index 100%
rename from content/commands/strlen/index.md
rename to content/commands/strlen.md
diff --git a/content/commands/strlen/syntax.svg b/content/commands/strlen/syntax.svg
deleted file mode 100644
index 90e594ed69..0000000000
--- a/content/commands/strlen/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/subscribe/index.md b/content/commands/subscribe.md
similarity index 100%
rename from content/commands/subscribe/index.md
rename to content/commands/subscribe.md
diff --git a/content/commands/subscribe/syntax.svg b/content/commands/subscribe/syntax.svg
deleted file mode 100644
index 9da86e6ffd..0000000000
--- a/content/commands/subscribe/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/substr/index.md b/content/commands/substr.md
similarity index 100%
rename from content/commands/substr/index.md
rename to content/commands/substr.md
diff --git a/content/commands/substr/syntax.svg b/content/commands/substr/syntax.svg
deleted file mode 100644
index 666e094a7b..0000000000
--- a/content/commands/substr/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sunion/index.md b/content/commands/sunion.md
similarity index 100%
rename from content/commands/sunion/index.md
rename to content/commands/sunion.md
diff --git a/content/commands/sunion/syntax.svg b/content/commands/sunion/syntax.svg
deleted file mode 100644
index 66f9b4f5b0..0000000000
--- a/content/commands/sunion/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sunionstore/index.md b/content/commands/sunionstore.md
similarity index 100%
rename from content/commands/sunionstore/index.md
rename to content/commands/sunionstore.md
diff --git a/content/commands/sunionstore/syntax.svg b/content/commands/sunionstore/syntax.svg
deleted file mode 100644
index 58120167f3..0000000000
--- a/content/commands/sunionstore/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sunsubscribe/index.md b/content/commands/sunsubscribe.md
similarity index 100%
rename from content/commands/sunsubscribe/index.md
rename to content/commands/sunsubscribe.md
diff --git a/content/commands/sunsubscribe/syntax.svg b/content/commands/sunsubscribe/syntax.svg
deleted file mode 100644
index cabb854827..0000000000
--- a/content/commands/sunsubscribe/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/swapdb/index.md b/content/commands/swapdb.md
similarity index 100%
rename from content/commands/swapdb/index.md
rename to content/commands/swapdb.md
diff --git a/content/commands/swapdb/syntax.svg b/content/commands/swapdb/syntax.svg
deleted file mode 100644
index 863e3d556d..0000000000
--- a/content/commands/swapdb/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/sync/index.md b/content/commands/sync.md
similarity index 100%
rename from content/commands/sync/index.md
rename to content/commands/sync.md
diff --git a/content/commands/sync/syntax.svg b/content/commands/sync/syntax.svg
deleted file mode 100644
index c6cce91e27..0000000000
--- a/content/commands/sync/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.add/index.md b/content/commands/tdigest.add.md
similarity index 100%
rename from content/commands/tdigest.add/index.md
rename to content/commands/tdigest.add.md
diff --git a/content/commands/tdigest.add/syntax.svg b/content/commands/tdigest.add/syntax.svg
deleted file mode 100644
index e6783539e2..0000000000
--- a/content/commands/tdigest.add/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.byrank/index.md b/content/commands/tdigest.byrank.md
similarity index 100%
rename from content/commands/tdigest.byrank/index.md
rename to content/commands/tdigest.byrank.md
diff --git a/content/commands/tdigest.byrank/syntax.svg b/content/commands/tdigest.byrank/syntax.svg
deleted file mode 100644
index 53a9a3046e..0000000000
--- a/content/commands/tdigest.byrank/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.byrevrank/index.md b/content/commands/tdigest.byrevrank.md
similarity index 100%
rename from content/commands/tdigest.byrevrank/index.md
rename to content/commands/tdigest.byrevrank.md
diff --git a/content/commands/tdigest.byrevrank/syntax.svg b/content/commands/tdigest.byrevrank/syntax.svg
deleted file mode 100644
index 55be508051..0000000000
--- a/content/commands/tdigest.byrevrank/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.cdf/index.md b/content/commands/tdigest.cdf.md
similarity index 100%
rename from content/commands/tdigest.cdf/index.md
rename to content/commands/tdigest.cdf.md
diff --git a/content/commands/tdigest.cdf/syntax.svg b/content/commands/tdigest.cdf/syntax.svg
deleted file mode 100644
index 39153e266b..0000000000
--- a/content/commands/tdigest.cdf/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.create/index.md b/content/commands/tdigest.create.md
similarity index 100%
rename from content/commands/tdigest.create/index.md
rename to content/commands/tdigest.create.md
diff --git a/content/commands/tdigest.create/syntax.svg b/content/commands/tdigest.create/syntax.svg
deleted file mode 100644
index 77fd85bc18..0000000000
--- a/content/commands/tdigest.create/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.info/index.md b/content/commands/tdigest.info.md
similarity index 100%
rename from content/commands/tdigest.info/index.md
rename to content/commands/tdigest.info.md
diff --git a/content/commands/tdigest.info/syntax.svg b/content/commands/tdigest.info/syntax.svg
deleted file mode 100644
index 22f1e504fe..0000000000
--- a/content/commands/tdigest.info/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.max/index.md b/content/commands/tdigest.max.md
similarity index 100%
rename from content/commands/tdigest.max/index.md
rename to content/commands/tdigest.max.md
diff --git a/content/commands/tdigest.max/syntax.svg b/content/commands/tdigest.max/syntax.svg
deleted file mode 100644
index 76d3c63be5..0000000000
--- a/content/commands/tdigest.max/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.merge/index.md b/content/commands/tdigest.merge.md
similarity index 100%
rename from content/commands/tdigest.merge/index.md
rename to content/commands/tdigest.merge.md
diff --git a/content/commands/tdigest.merge/syntax.svg b/content/commands/tdigest.merge/syntax.svg
deleted file mode 100644
index 7bede32775..0000000000
--- a/content/commands/tdigest.merge/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.min/index.md b/content/commands/tdigest.min.md
similarity index 100%
rename from content/commands/tdigest.min/index.md
rename to content/commands/tdigest.min.md
diff --git a/content/commands/tdigest.min/syntax.svg b/content/commands/tdigest.min/syntax.svg
deleted file mode 100644
index 0553521d95..0000000000
--- a/content/commands/tdigest.min/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.quantile/index.md b/content/commands/tdigest.quantile.md
similarity index 100%
rename from content/commands/tdigest.quantile/index.md
rename to content/commands/tdigest.quantile.md
diff --git a/content/commands/tdigest.quantile/syntax.svg b/content/commands/tdigest.quantile/syntax.svg
deleted file mode 100644
index bb1e3d918e..0000000000
--- a/content/commands/tdigest.quantile/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.rank/index.md b/content/commands/tdigest.rank.md
similarity index 100%
rename from content/commands/tdigest.rank/index.md
rename to content/commands/tdigest.rank.md
diff --git a/content/commands/tdigest.rank/syntax.svg b/content/commands/tdigest.rank/syntax.svg
deleted file mode 100644
index 4185b2d21c..0000000000
--- a/content/commands/tdigest.rank/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.reset/index.md b/content/commands/tdigest.reset.md
similarity index 100%
rename from content/commands/tdigest.reset/index.md
rename to content/commands/tdigest.reset.md
diff --git a/content/commands/tdigest.reset/syntax.svg b/content/commands/tdigest.reset/syntax.svg
deleted file mode 100644
index 5409098dba..0000000000
--- a/content/commands/tdigest.reset/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.revrank/index.md b/content/commands/tdigest.revrank.md
similarity index 100%
rename from content/commands/tdigest.revrank/index.md
rename to content/commands/tdigest.revrank.md
diff --git a/content/commands/tdigest.revrank/syntax.svg b/content/commands/tdigest.revrank/syntax.svg
deleted file mode 100644
index 139c0867de..0000000000
--- a/content/commands/tdigest.revrank/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/tdigest.trimmed_mean/index.md b/content/commands/tdigest.trimmed_mean.md
similarity index 100%
rename from content/commands/tdigest.trimmed_mean/index.md
rename to content/commands/tdigest.trimmed_mean.md
diff --git a/content/commands/tdigest.trimmed_mean/syntax.svg b/content/commands/tdigest.trimmed_mean/syntax.svg
deleted file mode 100644
index 89b41f03d6..0000000000
--- a/content/commands/tdigest.trimmed_mean/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/time/index.md b/content/commands/time.md
similarity index 100%
rename from content/commands/time/index.md
rename to content/commands/time.md
diff --git a/content/commands/time/syntax.svg b/content/commands/time/syntax.svg
deleted file mode 100644
index 76be3deb70..0000000000
--- a/content/commands/time/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.add/index.md b/content/commands/topk.add.md
similarity index 100%
rename from content/commands/topk.add/index.md
rename to content/commands/topk.add.md
diff --git a/content/commands/topk.add/syntax.svg b/content/commands/topk.add/syntax.svg
deleted file mode 100644
index ed48682596..0000000000
--- a/content/commands/topk.add/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.count/index.md b/content/commands/topk.count.md
similarity index 100%
rename from content/commands/topk.count/index.md
rename to content/commands/topk.count.md
diff --git a/content/commands/topk.count/syntax.svg b/content/commands/topk.count/syntax.svg
deleted file mode 100644
index a93a024af4..0000000000
--- a/content/commands/topk.count/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.incrby/index.md b/content/commands/topk.incrby.md
similarity index 100%
rename from content/commands/topk.incrby/index.md
rename to content/commands/topk.incrby.md
diff --git a/content/commands/topk.incrby/syntax.svg b/content/commands/topk.incrby/syntax.svg
deleted file mode 100644
index dc76486d2d..0000000000
--- a/content/commands/topk.incrby/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.info/index.md b/content/commands/topk.info.md
similarity index 100%
rename from content/commands/topk.info/index.md
rename to content/commands/topk.info.md
diff --git a/content/commands/topk.info/syntax.svg b/content/commands/topk.info/syntax.svg
deleted file mode 100644
index 13fb6e4c76..0000000000
--- a/content/commands/topk.info/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.list/index.md b/content/commands/topk.list.md
similarity index 100%
rename from content/commands/topk.list/index.md
rename to content/commands/topk.list.md
diff --git a/content/commands/topk.list/syntax.svg b/content/commands/topk.list/syntax.svg
deleted file mode 100644
index cc0d9c4bfa..0000000000
--- a/content/commands/topk.list/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.query/index.md b/content/commands/topk.query.md
similarity index 100%
rename from content/commands/topk.query/index.md
rename to content/commands/topk.query.md
diff --git a/content/commands/topk.query/syntax.svg b/content/commands/topk.query/syntax.svg
deleted file mode 100644
index 8fb9399a5c..0000000000
--- a/content/commands/topk.query/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/topk.reserve/index.md b/content/commands/topk.reserve.md
similarity index 100%
rename from content/commands/topk.reserve/index.md
rename to content/commands/topk.reserve.md
diff --git a/content/commands/topk.reserve/syntax.svg b/content/commands/topk.reserve/syntax.svg
deleted file mode 100644
index e7300a1905..0000000000
--- a/content/commands/topk.reserve/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/touch/index.md b/content/commands/touch.md
similarity index 100%
rename from content/commands/touch/index.md
rename to content/commands/touch.md
diff --git a/content/commands/touch/syntax.svg b/content/commands/touch/syntax.svg
deleted file mode 100644
index a9b4783d43..0000000000
--- a/content/commands/touch/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.add/index.md b/content/commands/ts.add.md
similarity index 100%
rename from content/commands/ts.add/index.md
rename to content/commands/ts.add.md
diff --git a/content/commands/ts.add/syntax.svg b/content/commands/ts.add/syntax.svg
deleted file mode 100644
index 22e346f0b7..0000000000
--- a/content/commands/ts.add/syntax.svg
+++ /dev/null
@@ -1,47 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.alter/index.md b/content/commands/ts.alter.md
similarity index 100%
rename from content/commands/ts.alter/index.md
rename to content/commands/ts.alter.md
diff --git a/content/commands/ts.alter/syntax.svg b/content/commands/ts.alter/syntax.svg
deleted file mode 100644
index 013df882ab..0000000000
--- a/content/commands/ts.alter/syntax.svg
+++ /dev/null
@@ -1,38 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.create/index.md b/content/commands/ts.create.md
similarity index 100%
rename from content/commands/ts.create/index.md
rename to content/commands/ts.create.md
diff --git a/content/commands/ts.create/syntax.svg b/content/commands/ts.create/syntax.svg
deleted file mode 100644
index 755f2064b7..0000000000
--- a/content/commands/ts.create/syntax.svg
+++ /dev/null
@@ -1,45 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.createrule/index.md b/content/commands/ts.createrule.md
similarity index 100%
rename from content/commands/ts.createrule/index.md
rename to content/commands/ts.createrule.md
diff --git a/content/commands/ts.createrule/syntax.svg b/content/commands/ts.createrule/syntax.svg
deleted file mode 100644
index 09d2053389..0000000000
--- a/content/commands/ts.createrule/syntax.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.decrby/index.md b/content/commands/ts.decrby.md
similarity index 100%
rename from content/commands/ts.decrby/index.md
rename to content/commands/ts.decrby.md
diff --git a/content/commands/ts.decrby/syntax.svg b/content/commands/ts.decrby/syntax.svg
deleted file mode 100644
index 3eefb11945..0000000000
--- a/content/commands/ts.decrby/syntax.svg
+++ /dev/null
@@ -1,36 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.del/index.md b/content/commands/ts.del.md
similarity index 100%
rename from content/commands/ts.del/index.md
rename to content/commands/ts.del.md
diff --git a/content/commands/ts.del/syntax.svg b/content/commands/ts.del/syntax.svg
deleted file mode 100644
index ee5696fb14..0000000000
--- a/content/commands/ts.del/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.deleterule/index.md b/content/commands/ts.deleterule.md
similarity index 100%
rename from content/commands/ts.deleterule/index.md
rename to content/commands/ts.deleterule.md
diff --git a/content/commands/ts.deleterule/syntax.svg b/content/commands/ts.deleterule/syntax.svg
deleted file mode 100644
index 7ba236b7c6..0000000000
--- a/content/commands/ts.deleterule/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.get/index.md b/content/commands/ts.get.md
similarity index 100%
rename from content/commands/ts.get/index.md
rename to content/commands/ts.get.md
diff --git a/content/commands/ts.get/syntax.svg b/content/commands/ts.get/syntax.svg
deleted file mode 100644
index 337c6803fd..0000000000
--- a/content/commands/ts.get/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.incrby/index.md b/content/commands/ts.incrby.md
similarity index 100%
rename from content/commands/ts.incrby/index.md
rename to content/commands/ts.incrby.md
diff --git a/content/commands/ts.incrby/syntax.svg b/content/commands/ts.incrby/syntax.svg
deleted file mode 100644
index 7d452a082e..0000000000
--- a/content/commands/ts.incrby/syntax.svg
+++ /dev/null
@@ -1,36 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.info/index.md b/content/commands/ts.info.md
similarity index 100%
rename from content/commands/ts.info/index.md
rename to content/commands/ts.info.md
diff --git a/content/commands/ts.info/syntax.svg b/content/commands/ts.info/syntax.svg
deleted file mode 100644
index 5b51318e4b..0000000000
--- a/content/commands/ts.info/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.madd/index.md b/content/commands/ts.madd.md
similarity index 100%
rename from content/commands/ts.madd/index.md
rename to content/commands/ts.madd.md
diff --git a/content/commands/ts.madd/syntax.svg b/content/commands/ts.madd/syntax.svg
deleted file mode 100644
index 3f144f0b60..0000000000
--- a/content/commands/ts.madd/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.mget/index.md b/content/commands/ts.mget.md
similarity index 100%
rename from content/commands/ts.mget/index.md
rename to content/commands/ts.mget.md
diff --git a/content/commands/ts.mget/syntax.svg b/content/commands/ts.mget/syntax.svg
deleted file mode 100644
index 0215076b96..0000000000
--- a/content/commands/ts.mget/syntax.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.mrange/index.md b/content/commands/ts.mrange.md
similarity index 100%
rename from content/commands/ts.mrange/index.md
rename to content/commands/ts.mrange.md
diff --git a/content/commands/ts.mrange/syntax.svg b/content/commands/ts.mrange/syntax.svg
deleted file mode 100644
index 4201f03125..0000000000
--- a/content/commands/ts.mrange/syntax.svg
+++ /dev/null
@@ -1,88 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.mrevrange/index.md b/content/commands/ts.mrevrange.md
similarity index 100%
rename from content/commands/ts.mrevrange/index.md
rename to content/commands/ts.mrevrange.md
diff --git a/content/commands/ts.mrevrange/syntax.svg b/content/commands/ts.mrevrange/syntax.svg
deleted file mode 100644
index f00e750e2b..0000000000
--- a/content/commands/ts.mrevrange/syntax.svg
+++ /dev/null
@@ -1,88 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.queryindex/index.md b/content/commands/ts.queryindex.md
similarity index 100%
rename from content/commands/ts.queryindex/index.md
rename to content/commands/ts.queryindex.md
diff --git a/content/commands/ts.queryindex/syntax.svg b/content/commands/ts.queryindex/syntax.svg
deleted file mode 100644
index 0380a9470b..0000000000
--- a/content/commands/ts.queryindex/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.range/index.md b/content/commands/ts.range.md
similarity index 100%
rename from content/commands/ts.range/index.md
rename to content/commands/ts.range.md
diff --git a/content/commands/ts.range/syntax.svg b/content/commands/ts.range/syntax.svg
deleted file mode 100644
index 41a9c4fddb..0000000000
--- a/content/commands/ts.range/syntax.svg
+++ /dev/null
@@ -1,63 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ts.revrange/index.md b/content/commands/ts.revrange.md
similarity index 100%
rename from content/commands/ts.revrange/index.md
rename to content/commands/ts.revrange.md
diff --git a/content/commands/ts.revrange/syntax.svg b/content/commands/ts.revrange/syntax.svg
deleted file mode 100644
index 24aaea8930..0000000000
--- a/content/commands/ts.revrange/syntax.svg
+++ /dev/null
@@ -1,63 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/ttl/index.md b/content/commands/ttl.md
similarity index 100%
rename from content/commands/ttl/index.md
rename to content/commands/ttl.md
diff --git a/content/commands/ttl/syntax.svg b/content/commands/ttl/syntax.svg
deleted file mode 100644
index 4045a74434..0000000000
--- a/content/commands/ttl/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/type/index.md b/content/commands/type.md
similarity index 100%
rename from content/commands/type/index.md
rename to content/commands/type.md
diff --git a/content/commands/type/syntax.svg b/content/commands/type/syntax.svg
deleted file mode 100644
index a593ef419c..0000000000
--- a/content/commands/type/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/unlink/index.md b/content/commands/unlink.md
similarity index 100%
rename from content/commands/unlink/index.md
rename to content/commands/unlink.md
diff --git a/content/commands/unlink/syntax.svg b/content/commands/unlink/syntax.svg
deleted file mode 100644
index a98a013ba3..0000000000
--- a/content/commands/unlink/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/unsubscribe/index.md b/content/commands/unsubscribe.md
similarity index 100%
rename from content/commands/unsubscribe/index.md
rename to content/commands/unsubscribe.md
diff --git a/content/commands/unsubscribe/syntax.svg b/content/commands/unsubscribe/syntax.svg
deleted file mode 100644
index d716633fed..0000000000
--- a/content/commands/unsubscribe/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/unwatch/index.md b/content/commands/unwatch.md
similarity index 100%
rename from content/commands/unwatch/index.md
rename to content/commands/unwatch.md
diff --git a/content/commands/unwatch/syntax.svg b/content/commands/unwatch/syntax.svg
deleted file mode 100644
index b65c9244f1..0000000000
--- a/content/commands/unwatch/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/vadd/index.md b/content/commands/vadd.md
similarity index 100%
rename from content/commands/vadd/index.md
rename to content/commands/vadd.md
diff --git a/content/commands/vcard/index.md b/content/commands/vcard.md
similarity index 100%
rename from content/commands/vcard/index.md
rename to content/commands/vcard.md
diff --git a/content/commands/vdim/index.md b/content/commands/vdim.md
similarity index 100%
rename from content/commands/vdim/index.md
rename to content/commands/vdim.md
diff --git a/content/commands/vemb/index.md b/content/commands/vemb.md
similarity index 100%
rename from content/commands/vemb/index.md
rename to content/commands/vemb.md
diff --git a/content/commands/vgetattr/index.md b/content/commands/vgetattr.md
similarity index 100%
rename from content/commands/vgetattr/index.md
rename to content/commands/vgetattr.md
diff --git a/content/commands/vinfo/index.md b/content/commands/vinfo.md
similarity index 100%
rename from content/commands/vinfo/index.md
rename to content/commands/vinfo.md
diff --git a/content/commands/vlinks/index.md b/content/commands/vlinks.md
similarity index 100%
rename from content/commands/vlinks/index.md
rename to content/commands/vlinks.md
diff --git a/content/commands/vrandmember/index.md b/content/commands/vrandmember.md
similarity index 100%
rename from content/commands/vrandmember/index.md
rename to content/commands/vrandmember.md
diff --git a/content/commands/vrem/index.md b/content/commands/vrem.md
similarity index 100%
rename from content/commands/vrem/index.md
rename to content/commands/vrem.md
diff --git a/content/commands/vsetattr/index.md b/content/commands/vsetattr.md
similarity index 100%
rename from content/commands/vsetattr/index.md
rename to content/commands/vsetattr.md
diff --git a/content/commands/vsim/index.md b/content/commands/vsim.md
similarity index 100%
rename from content/commands/vsim/index.md
rename to content/commands/vsim.md
diff --git a/content/commands/wait/index.md b/content/commands/wait.md
similarity index 100%
rename from content/commands/wait/index.md
rename to content/commands/wait.md
diff --git a/content/commands/wait/syntax.svg b/content/commands/wait/syntax.svg
deleted file mode 100644
index 8cb6c97b15..0000000000
--- a/content/commands/wait/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/waitaof/index.md b/content/commands/waitaof.md
similarity index 100%
rename from content/commands/waitaof/index.md
rename to content/commands/waitaof.md
diff --git a/content/commands/waitaof/syntax.svg b/content/commands/waitaof/syntax.svg
deleted file mode 100644
index ef5fa003c9..0000000000
--- a/content/commands/waitaof/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/watch/index.md b/content/commands/watch.md
similarity index 100%
rename from content/commands/watch/index.md
rename to content/commands/watch.md
diff --git a/content/commands/watch/syntax.svg b/content/commands/watch/syntax.svg
deleted file mode 100644
index be811e74e7..0000000000
--- a/content/commands/watch/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xack/index.md b/content/commands/xack.md
similarity index 100%
rename from content/commands/xack/index.md
rename to content/commands/xack.md
diff --git a/content/commands/xack/syntax.svg b/content/commands/xack/syntax.svg
deleted file mode 100644
index 1b8e322da4..0000000000
--- a/content/commands/xack/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xadd/index.md b/content/commands/xadd.md
similarity index 100%
rename from content/commands/xadd/index.md
rename to content/commands/xadd.md
diff --git a/content/commands/xadd/syntax.svg b/content/commands/xadd/syntax.svg
deleted file mode 100644
index a1d9a485cd..0000000000
--- a/content/commands/xadd/syntax.svg
+++ /dev/null
@@ -1,38 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xautoclaim/index.md b/content/commands/xautoclaim.md
similarity index 100%
rename from content/commands/xautoclaim/index.md
rename to content/commands/xautoclaim.md
diff --git a/content/commands/xautoclaim/syntax.svg b/content/commands/xautoclaim/syntax.svg
deleted file mode 100644
index d0bc42fb52..0000000000
--- a/content/commands/xautoclaim/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xclaim/index.md b/content/commands/xclaim.md
similarity index 100%
rename from content/commands/xclaim/index.md
rename to content/commands/xclaim.md
diff --git a/content/commands/xclaim/syntax.svg b/content/commands/xclaim/syntax.svg
deleted file mode 100644
index 90ec5ae5a5..0000000000
--- a/content/commands/xclaim/syntax.svg
+++ /dev/null
@@ -1,43 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xdel/index.md b/content/commands/xdel.md
similarity index 100%
rename from content/commands/xdel/index.md
rename to content/commands/xdel.md
diff --git a/content/commands/xdel/syntax.svg b/content/commands/xdel/syntax.svg
deleted file mode 100644
index 6b0d0eba7c..0000000000
--- a/content/commands/xdel/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup-create/index.md b/content/commands/xgroup-create.md
similarity index 100%
rename from content/commands/xgroup-create/index.md
rename to content/commands/xgroup-create.md
diff --git a/content/commands/xgroup-create/syntax.svg b/content/commands/xgroup-create/syntax.svg
deleted file mode 100644
index c123f023a0..0000000000
--- a/content/commands/xgroup-create/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup-createconsumer/index.md b/content/commands/xgroup-createconsumer.md
similarity index 100%
rename from content/commands/xgroup-createconsumer/index.md
rename to content/commands/xgroup-createconsumer.md
diff --git a/content/commands/xgroup-createconsumer/syntax.svg b/content/commands/xgroup-createconsumer/syntax.svg
deleted file mode 100644
index 26a5896880..0000000000
--- a/content/commands/xgroup-createconsumer/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup-delconsumer/index.md b/content/commands/xgroup-delconsumer.md
similarity index 100%
rename from content/commands/xgroup-delconsumer/index.md
rename to content/commands/xgroup-delconsumer.md
diff --git a/content/commands/xgroup-delconsumer/syntax.svg b/content/commands/xgroup-delconsumer/syntax.svg
deleted file mode 100644
index f58970173b..0000000000
--- a/content/commands/xgroup-delconsumer/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup-destroy/index.md b/content/commands/xgroup-destroy.md
similarity index 100%
rename from content/commands/xgroup-destroy/index.md
rename to content/commands/xgroup-destroy.md
diff --git a/content/commands/xgroup-destroy/syntax.svg b/content/commands/xgroup-destroy/syntax.svg
deleted file mode 100644
index 0a142e92c3..0000000000
--- a/content/commands/xgroup-destroy/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup-help/index.md b/content/commands/xgroup-help.md
similarity index 100%
rename from content/commands/xgroup-help/index.md
rename to content/commands/xgroup-help.md
diff --git a/content/commands/xgroup-help/syntax.svg b/content/commands/xgroup-help/syntax.svg
deleted file mode 100644
index 7a07f71f45..0000000000
--- a/content/commands/xgroup-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup-setid/index.md b/content/commands/xgroup-setid.md
similarity index 100%
rename from content/commands/xgroup-setid/index.md
rename to content/commands/xgroup-setid.md
diff --git a/content/commands/xgroup-setid/syntax.svg b/content/commands/xgroup-setid/syntax.svg
deleted file mode 100644
index 23a623aebf..0000000000
--- a/content/commands/xgroup-setid/syntax.svg
+++ /dev/null
@@ -1,18 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xgroup/index.md b/content/commands/xgroup.md
similarity index 100%
rename from content/commands/xgroup/index.md
rename to content/commands/xgroup.md
diff --git a/content/commands/xgroup/syntax.svg b/content/commands/xgroup/syntax.svg
deleted file mode 100644
index be381befde..0000000000
--- a/content/commands/xgroup/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xinfo-consumers/index.md b/content/commands/xinfo-consumers.md
similarity index 100%
rename from content/commands/xinfo-consumers/index.md
rename to content/commands/xinfo-consumers.md
diff --git a/content/commands/xinfo-consumers/syntax.svg b/content/commands/xinfo-consumers/syntax.svg
deleted file mode 100644
index 97f0747cea..0000000000
--- a/content/commands/xinfo-consumers/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xinfo-groups/index.md b/content/commands/xinfo-groups.md
similarity index 100%
rename from content/commands/xinfo-groups/index.md
rename to content/commands/xinfo-groups.md
diff --git a/content/commands/xinfo-groups/syntax.svg b/content/commands/xinfo-groups/syntax.svg
deleted file mode 100644
index 80648dfa20..0000000000
--- a/content/commands/xinfo-groups/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xinfo-help/index.md b/content/commands/xinfo-help.md
similarity index 100%
rename from content/commands/xinfo-help/index.md
rename to content/commands/xinfo-help.md
diff --git a/content/commands/xinfo-help/syntax.svg b/content/commands/xinfo-help/syntax.svg
deleted file mode 100644
index 50664708c7..0000000000
--- a/content/commands/xinfo-help/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xinfo-stream/index.md b/content/commands/xinfo-stream.md
similarity index 100%
rename from content/commands/xinfo-stream/index.md
rename to content/commands/xinfo-stream.md
diff --git a/content/commands/xinfo-stream/syntax.svg b/content/commands/xinfo-stream/syntax.svg
deleted file mode 100644
index 4ed77a0b18..0000000000
--- a/content/commands/xinfo-stream/syntax.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xinfo/index.md b/content/commands/xinfo.md
similarity index 100%
rename from content/commands/xinfo/index.md
rename to content/commands/xinfo.md
diff --git a/content/commands/xinfo/syntax.svg b/content/commands/xinfo/syntax.svg
deleted file mode 100644
index 6c53052afa..0000000000
--- a/content/commands/xinfo/syntax.svg
+++ /dev/null
@@ -1,7 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xlen/index.md b/content/commands/xlen.md
similarity index 100%
rename from content/commands/xlen/index.md
rename to content/commands/xlen.md
diff --git a/content/commands/xlen/syntax.svg b/content/commands/xlen/syntax.svg
deleted file mode 100644
index c003f2b90f..0000000000
--- a/content/commands/xlen/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xpending/index.md b/content/commands/xpending.md
similarity index 100%
rename from content/commands/xpending/index.md
rename to content/commands/xpending.md
diff --git a/content/commands/xpending/syntax.svg b/content/commands/xpending/syntax.svg
deleted file mode 100644
index 5ed792033b..0000000000
--- a/content/commands/xpending/syntax.svg
+++ /dev/null
@@ -1,24 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xrange/index.md b/content/commands/xrange.md
similarity index 100%
rename from content/commands/xrange/index.md
rename to content/commands/xrange.md
diff --git a/content/commands/xrange/syntax.svg b/content/commands/xrange/syntax.svg
deleted file mode 100644
index a2aa993032..0000000000
--- a/content/commands/xrange/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xread/index.md b/content/commands/xread.md
similarity index 100%
rename from content/commands/xread/index.md
rename to content/commands/xread.md
diff --git a/content/commands/xread/syntax.svg b/content/commands/xread/syntax.svg
deleted file mode 100644
index 435645da45..0000000000
--- a/content/commands/xread/syntax.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xreadgroup/index.md b/content/commands/xreadgroup.md
similarity index 100%
rename from content/commands/xreadgroup/index.md
rename to content/commands/xreadgroup.md
diff --git a/content/commands/xreadgroup/syntax.svg b/content/commands/xreadgroup/syntax.svg
deleted file mode 100644
index b541267cd9..0000000000
--- a/content/commands/xreadgroup/syntax.svg
+++ /dev/null
@@ -1,33 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xrevrange/index.md b/content/commands/xrevrange.md
similarity index 100%
rename from content/commands/xrevrange/index.md
rename to content/commands/xrevrange.md
diff --git a/content/commands/xrevrange/syntax.svg b/content/commands/xrevrange/syntax.svg
deleted file mode 100644
index 34106b6da6..0000000000
--- a/content/commands/xrevrange/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xsetid/index.md b/content/commands/xsetid.md
similarity index 100%
rename from content/commands/xsetid/index.md
rename to content/commands/xsetid.md
diff --git a/content/commands/xsetid/syntax.svg b/content/commands/xsetid/syntax.svg
deleted file mode 100644
index 2434fe0f2a..0000000000
--- a/content/commands/xsetid/syntax.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/xtrim/index.md b/content/commands/xtrim.md
similarity index 100%
rename from content/commands/xtrim/index.md
rename to content/commands/xtrim.md
diff --git a/content/commands/xtrim/syntax.svg b/content/commands/xtrim/syntax.svg
deleted file mode 100644
index 22120e3da1..0000000000
--- a/content/commands/xtrim/syntax.svg
+++ /dev/null
@@ -1,23 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zadd/index.md b/content/commands/zadd.md
similarity index 100%
rename from content/commands/zadd/index.md
rename to content/commands/zadd.md
diff --git a/content/commands/zadd/syntax.svg b/content/commands/zadd/syntax.svg
deleted file mode 100644
index 09b98e5503..0000000000
--- a/content/commands/zadd/syntax.svg
+++ /dev/null
@@ -1,30 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zcard/index.md b/content/commands/zcard.md
similarity index 100%
rename from content/commands/zcard/index.md
rename to content/commands/zcard.md
diff --git a/content/commands/zcard/syntax.svg b/content/commands/zcard/syntax.svg
deleted file mode 100644
index d0704abd0a..0000000000
--- a/content/commands/zcard/syntax.svg
+++ /dev/null
@@ -1,8 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zcount/index.md b/content/commands/zcount.md
similarity index 100%
rename from content/commands/zcount/index.md
rename to content/commands/zcount.md
diff --git a/content/commands/zcount/syntax.svg b/content/commands/zcount/syntax.svg
deleted file mode 100644
index 6a3bfe95e9..0000000000
--- a/content/commands/zcount/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zdiff/index.md b/content/commands/zdiff.md
similarity index 100%
rename from content/commands/zdiff/index.md
rename to content/commands/zdiff.md
diff --git a/content/commands/zdiff/syntax.svg b/content/commands/zdiff/syntax.svg
deleted file mode 100644
index 8ca320b87f..0000000000
--- a/content/commands/zdiff/syntax.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zdiffstore/index.md b/content/commands/zdiffstore.md
similarity index 100%
rename from content/commands/zdiffstore/index.md
rename to content/commands/zdiffstore.md
diff --git a/content/commands/zdiffstore/syntax.svg b/content/commands/zdiffstore/syntax.svg
deleted file mode 100644
index 080516f8f7..0000000000
--- a/content/commands/zdiffstore/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zincrby/index.md b/content/commands/zincrby.md
similarity index 100%
rename from content/commands/zincrby/index.md
rename to content/commands/zincrby.md
diff --git a/content/commands/zincrby/syntax.svg b/content/commands/zincrby/syntax.svg
deleted file mode 100644
index 1e327e9879..0000000000
--- a/content/commands/zincrby/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zinter/index.md b/content/commands/zinter.md
similarity index 100%
rename from content/commands/zinter/index.md
rename to content/commands/zinter.md
diff --git a/content/commands/zinter/syntax.svg b/content/commands/zinter/syntax.svg
deleted file mode 100644
index c0ded6cbd6..0000000000
--- a/content/commands/zinter/syntax.svg
+++ /dev/null
@@ -1,28 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zintercard/index.md b/content/commands/zintercard.md
similarity index 100%
rename from content/commands/zintercard/index.md
rename to content/commands/zintercard.md
diff --git a/content/commands/zintercard/syntax.svg b/content/commands/zintercard/syntax.svg
deleted file mode 100644
index 7726db94cd..0000000000
--- a/content/commands/zintercard/syntax.svg
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zinterstore/index.md b/content/commands/zinterstore.md
similarity index 100%
rename from content/commands/zinterstore/index.md
rename to content/commands/zinterstore.md
diff --git a/content/commands/zinterstore/syntax.svg b/content/commands/zinterstore/syntax.svg
deleted file mode 100644
index 5ee52b6b79..0000000000
--- a/content/commands/zinterstore/syntax.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zlexcount/index.md b/content/commands/zlexcount.md
similarity index 100%
rename from content/commands/zlexcount/index.md
rename to content/commands/zlexcount.md
diff --git a/content/commands/zlexcount/syntax.svg b/content/commands/zlexcount/syntax.svg
deleted file mode 100644
index 8e8cacf794..0000000000
--- a/content/commands/zlexcount/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zmpop/index.md b/content/commands/zmpop.md
similarity index 100%
rename from content/commands/zmpop/index.md
rename to content/commands/zmpop.md
diff --git a/content/commands/zmpop/syntax.svg b/content/commands/zmpop/syntax.svg
deleted file mode 100644
index 6f259d936b..0000000000
--- a/content/commands/zmpop/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zmscore/index.md b/content/commands/zmscore.md
similarity index 100%
rename from content/commands/zmscore/index.md
rename to content/commands/zmscore.md
diff --git a/content/commands/zmscore/syntax.svg b/content/commands/zmscore/syntax.svg
deleted file mode 100644
index 1a8c6bcb79..0000000000
--- a/content/commands/zmscore/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zpopmax/index.md b/content/commands/zpopmax.md
similarity index 100%
rename from content/commands/zpopmax/index.md
rename to content/commands/zpopmax.md
diff --git a/content/commands/zpopmax/syntax.svg b/content/commands/zpopmax/syntax.svg
deleted file mode 100644
index 4e48eb1bc1..0000000000
--- a/content/commands/zpopmax/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zpopmin/index.md b/content/commands/zpopmin.md
similarity index 100%
rename from content/commands/zpopmin/index.md
rename to content/commands/zpopmin.md
diff --git a/content/commands/zpopmin/syntax.svg b/content/commands/zpopmin/syntax.svg
deleted file mode 100644
index dfb351b2c7..0000000000
--- a/content/commands/zpopmin/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrandmember/index.md b/content/commands/zrandmember.md
similarity index 100%
rename from content/commands/zrandmember/index.md
rename to content/commands/zrandmember.md
diff --git a/content/commands/zrandmember/syntax.svg b/content/commands/zrandmember/syntax.svg
deleted file mode 100644
index 311f3510c0..0000000000
--- a/content/commands/zrandmember/syntax.svg
+++ /dev/null
@@ -1,15 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrange/index.md b/content/commands/zrange.md
similarity index 100%
rename from content/commands/zrange/index.md
rename to content/commands/zrange.md
diff --git a/content/commands/zrange/syntax.svg b/content/commands/zrange/syntax.svg
deleted file mode 100644
index 96f46eb2a2..0000000000
--- a/content/commands/zrange/syntax.svg
+++ /dev/null
@@ -1,29 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrangebylex/index.md b/content/commands/zrangebylex.md
similarity index 100%
rename from content/commands/zrangebylex/index.md
rename to content/commands/zrangebylex.md
diff --git a/content/commands/zrangebylex/syntax.svg b/content/commands/zrangebylex/syntax.svg
deleted file mode 100644
index 780380c96f..0000000000
--- a/content/commands/zrangebylex/syntax.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrangebyscore/index.md b/content/commands/zrangebyscore.md
similarity index 100%
rename from content/commands/zrangebyscore/index.md
rename to content/commands/zrangebyscore.md
diff --git a/content/commands/zrangebyscore/syntax.svg b/content/commands/zrangebyscore/syntax.svg
deleted file mode 100644
index 522371d2c8..0000000000
--- a/content/commands/zrangebyscore/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrangestore/index.md b/content/commands/zrangestore.md
similarity index 100%
rename from content/commands/zrangestore/index.md
rename to content/commands/zrangestore.md
diff --git a/content/commands/zrangestore/syntax.svg b/content/commands/zrangestore/syntax.svg
deleted file mode 100644
index f0d70f0776..0000000000
--- a/content/commands/zrangestore/syntax.svg
+++ /dev/null
@@ -1,27 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrank/index.md b/content/commands/zrank.md
similarity index 100%
rename from content/commands/zrank/index.md
rename to content/commands/zrank.md
diff --git a/content/commands/zrank/syntax.svg b/content/commands/zrank/syntax.svg
deleted file mode 100644
index 84812b29e0..0000000000
--- a/content/commands/zrank/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrem/index.md b/content/commands/zrem.md
similarity index 100%
rename from content/commands/zrem/index.md
rename to content/commands/zrem.md
diff --git a/content/commands/zrem/syntax.svg b/content/commands/zrem/syntax.svg
deleted file mode 100644
index db9011584d..0000000000
--- a/content/commands/zrem/syntax.svg
+++ /dev/null
@@ -1,11 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zremrangebylex/index.md b/content/commands/zremrangebylex.md
similarity index 100%
rename from content/commands/zremrangebylex/index.md
rename to content/commands/zremrangebylex.md
diff --git a/content/commands/zremrangebylex/syntax.svg b/content/commands/zremrangebylex/syntax.svg
deleted file mode 100644
index ea334d65d9..0000000000
--- a/content/commands/zremrangebylex/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zremrangebyrank/index.md b/content/commands/zremrangebyrank.md
similarity index 100%
rename from content/commands/zremrangebyrank/index.md
rename to content/commands/zremrangebyrank.md
diff --git a/content/commands/zremrangebyrank/syntax.svg b/content/commands/zremrangebyrank/syntax.svg
deleted file mode 100644
index 8ec152c4d7..0000000000
--- a/content/commands/zremrangebyrank/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zremrangebyscore/index.md b/content/commands/zremrangebyscore.md
similarity index 100%
rename from content/commands/zremrangebyscore/index.md
rename to content/commands/zremrangebyscore.md
diff --git a/content/commands/zremrangebyscore/syntax.svg b/content/commands/zremrangebyscore/syntax.svg
deleted file mode 100644
index a564d476ba..0000000000
--- a/content/commands/zremrangebyscore/syntax.svg
+++ /dev/null
@@ -1,10 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrevrange/index.md b/content/commands/zrevrange.md
similarity index 100%
rename from content/commands/zrevrange/index.md
rename to content/commands/zrevrange.md
diff --git a/content/commands/zrevrange/syntax.svg b/content/commands/zrevrange/syntax.svg
deleted file mode 100644
index 71a0bdd925..0000000000
--- a/content/commands/zrevrange/syntax.svg
+++ /dev/null
@@ -1,13 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrevrangebylex/index.md b/content/commands/zrevrangebylex.md
similarity index 100%
rename from content/commands/zrevrangebylex/index.md
rename to content/commands/zrevrangebylex.md
diff --git a/content/commands/zrevrangebylex/syntax.svg b/content/commands/zrevrangebylex/syntax.svg
deleted file mode 100644
index 6480e2f104..0000000000
--- a/content/commands/zrevrangebylex/syntax.svg
+++ /dev/null
@@ -1,17 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrevrangebyscore/index.md b/content/commands/zrevrangebyscore.md
similarity index 100%
rename from content/commands/zrevrangebyscore/index.md
rename to content/commands/zrevrangebyscore.md
diff --git a/content/commands/zrevrangebyscore/syntax.svg b/content/commands/zrevrangebyscore/syntax.svg
deleted file mode 100644
index 6f97684ffa..0000000000
--- a/content/commands/zrevrangebyscore/syntax.svg
+++ /dev/null
@@ -1,21 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zrevrank/index.md b/content/commands/zrevrank.md
similarity index 100%
rename from content/commands/zrevrank/index.md
rename to content/commands/zrevrank.md
diff --git a/content/commands/zrevrank/syntax.svg b/content/commands/zrevrank/syntax.svg
deleted file mode 100644
index 3995d3bd7d..0000000000
--- a/content/commands/zrevrank/syntax.svg
+++ /dev/null
@@ -1,12 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zscan/index.md b/content/commands/zscan.md
similarity index 100%
rename from content/commands/zscan/index.md
rename to content/commands/zscan.md
diff --git a/content/commands/zscan/syntax.svg b/content/commands/zscan/syntax.svg
deleted file mode 100644
index d7b64e4194..0000000000
--- a/content/commands/zscan/syntax.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zscore/index.md b/content/commands/zscore.md
similarity index 100%
rename from content/commands/zscore/index.md
rename to content/commands/zscore.md
diff --git a/content/commands/zscore/syntax.svg b/content/commands/zscore/syntax.svg
deleted file mode 100644
index 1db1605bd9..0000000000
--- a/content/commands/zscore/syntax.svg
+++ /dev/null
@@ -1,9 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zunion/index.md b/content/commands/zunion.md
similarity index 100%
rename from content/commands/zunion/index.md
rename to content/commands/zunion.md
diff --git a/content/commands/zunion/syntax.svg b/content/commands/zunion/syntax.svg
deleted file mode 100644
index 501e970c46..0000000000
--- a/content/commands/zunion/syntax.svg
+++ /dev/null
@@ -1,28 +0,0 @@
-
\ No newline at end of file
diff --git a/content/commands/zunionstore/index.md b/content/commands/zunionstore.md
similarity index 100%
rename from content/commands/zunionstore/index.md
rename to content/commands/zunionstore.md
diff --git a/content/commands/zunionstore/syntax.svg b/content/commands/zunionstore/syntax.svg
deleted file mode 100644
index 9a58701155..0000000000
--- a/content/commands/zunionstore/syntax.svg
+++ /dev/null
@@ -1,26 +0,0 @@
-
\ No newline at end of file
diff --git a/static/js/commands-filters.js b/static/js/commands-filters.js
index 3a1b20099f..d399d61c53 100644
--- a/static/js/commands-filters.js
+++ b/static/js/commands-filters.js
@@ -95,7 +95,15 @@ function filter() {
hiddenCards.pop().style.display = '';
}
- for (const element of document.querySelectorAll('#commands-grid > [data-group]')) {
+ const commandElements = document.querySelectorAll('#commands-grid > [data-group]');
+
+ // Defensive check: if no command elements found, don't filter yet
+ if (commandElements.length === 0) {
+ console.warn('No command elements found for filtering. DOM may not be ready.');
+ return;
+ }
+
+ for (const element of commandElements) {
for (const [key, filter] of Object.entries(FILTERS)) {
if (!filter.element.value) continue;
@@ -122,27 +130,41 @@ if (url.hash) {
setUrl();
}
-for (const [key, { element, oninput }] of Object.entries(FILTERS)) {
- if (url.searchParams.has(key)) {
- element.value = url.searchParams.get(key);
+// Initialize filters with DOM ready check
+function initializeFilters() {
+ // Check if commands grid exists and has content
+ const commandsGrid = document.querySelector('#commands-grid');
+ if (!commandsGrid || commandsGrid.children.length === 0) {
+ // Retry after a short delay if DOM isn't ready
+ setTimeout(initializeFilters, 50);
+ return;
}
- element.addEventListener('input', () => {
- if (oninput) oninput();
-
- if (!element.value) {
- url.searchParams.delete(key);
- } else {
- url.searchParams.set(key, element.value);
+ for (const [key, { element, oninput }] of Object.entries(FILTERS)) {
+ if (url.searchParams.has(key)) {
+ element.value = url.searchParams.get(key);
}
- setUrl();
- filter();
- });
-}
+ element.addEventListener('input', () => {
+ if (oninput) oninput();
+
+ if (!element.value) {
+ url.searchParams.delete(key);
+ } else {
+ url.searchParams.set(key, element.value);
+ }
+
+ setUrl();
+ filter();
+ });
+ }
+
+ for (const { oninput } of Object.values(FILTERS)) {
+ if (oninput) oninput();
+ }
-for (const { oninput } of Object.values(FILTERS)) {
- if (oninput) oninput();
+ filter();
}
-filter();
\ No newline at end of file
+// Start initialization
+initializeFilters();
\ No newline at end of file