diff --git a/src/assets/clle/commandHover.png b/src/assets/clle/commandHover.png
new file mode 100644
index 0000000..fe6e1f4
Binary files /dev/null and b/src/assets/clle/commandHover.png differ
diff --git a/src/assets/clle/findAllReferences.png b/src/assets/clle/findAllReferences.png
new file mode 100644
index 0000000..0b73880
Binary files /dev/null and b/src/assets/clle/findAllReferences.png differ
diff --git a/src/assets/clle/fullDocumentation.png b/src/assets/clle/fullDocumentation.png
new file mode 100644
index 0000000..facae66
Binary files /dev/null and b/src/assets/clle/fullDocumentation.png differ
diff --git a/src/assets/clle/goToReferences.png b/src/assets/clle/goToReferences.png
new file mode 100644
index 0000000..fc0e1bc
Binary files /dev/null and b/src/assets/clle/goToReferences.png differ
diff --git a/src/assets/clle/outlineView.png b/src/assets/clle/outlineView.png
new file mode 100644
index 0000000..78da553
Binary files /dev/null and b/src/assets/clle/outlineView.png differ
diff --git a/src/assets/clle/parameterHover.png b/src/assets/clle/parameterHover.png
new file mode 100644
index 0000000..a4bb6a2
Binary files /dev/null and b/src/assets/clle/parameterHover.png differ
diff --git a/src/assets/clle/peakDefinition.png b/src/assets/clle/peakDefinition.png
new file mode 100644
index 0000000..043bfeb
Binary files /dev/null and b/src/assets/clle/peakDefinition.png differ
diff --git a/src/assets/clle/rename.png b/src/assets/clle/rename.png
new file mode 100644
index 0000000..9e5ccda
Binary files /dev/null and b/src/assets/clle/rename.png differ
diff --git a/src/assets/clle/syntaxChecker.png b/src/assets/clle/syntaxChecker.png
new file mode 100644
index 0000000..5f88845
Binary files /dev/null and b/src/assets/clle/syntaxChecker.png differ
diff --git a/src/content/docs/extensions/clle/index.mdx b/src/content/docs/extensions/clle/index.mdx
index d0f69ce..ef666f5 100644
--- a/src/content/docs/extensions/clle/index.mdx
+++ b/src/content/docs/extensions/clle/index.mdx
@@ -1,124 +1,184 @@
----
-title: CLLE Language tools
----
-
-import { CardGrid, Card, Tabs, TabItem } from '@astrojs/starlight/components';
-import { Aside, Icon } from '@astrojs/starlight/components';
-
- __Command Language__ is the scripting language for the IBM i operating system. This extension assists in CLP or CLLE program development, providing:
-
- - Content assist for CL commands
- - Outline view
- - Go to or peek definition and references
-
- It also provides support for running a CL statement with `Ctrl+r`.
-
-## Installation
-
-The CL Language tools extension can be [installed from the Marketplace](https://marketplace.visualstudio.com/items?itemName=IBM.vscode-clle) and is also part of the [IBM i Development Pack](https://marketplace.visualstudio.com/items?itemName=HalcyonTechLtd.ibm-i-development-pack).
-
-
-Or it can be installed from the Extension view inside Visual Code.
-
-
-
-
-## Content Assist
-
-Suppose you want to create a data area with the CRTDTAARA command. Enter CRTDTAARA __follwed by a space__, then press _Ctrl+Space_ to invoke Content Assist to produce a pick list like this:
-
-
-
-
-
-Press _Enter_ or _Tab_ to accept the highlighted _All parameters_ from the pick list and a skeleton command is created.
-
-
-
-
-
-
-
-
-
-Use`Ctrl+space` to get a pick list of special values or available variables (just one in this example):
-
-
-
-
-
-
-
-### Content Assist Snippets
-
-Prompting of most CL commands requires a connection to a server. However, there are a number of commands that are provided as snippets, which don't require a connection. `DCL`, for example, is provided as a snippet.
-
-
-
-To declare a variable, enter just `d` and get a list of commands that begin with `d`:
-
-
-
-
-
-
-
-
-
-Since the `DCL` command is highlighted, hit enter and get a pick list of available parameters:
-
-
-
-
-
-
-
-
-
-The `VAR` parameter value is selected, so enter the variable name, then tab to the `TYPE` parameter value:
-
-
-
-
-
-
-
-
-
-If all the valid valued for `TYPE` are know, just enter a valid value, for example `*CHAR`. Or delete the highlighted value and key _Ctrl+Space_ to get a pick list of the valid values:
-
-
-
-
-
-
-
-
-
-If all the valid valued for `TYPE` are know, just enter a valid value, for example `*CHAR`. Or delete the highlighted value and key _Ctrl+Space_ to get a pick list of the valid values:
-
-
-
-
-
-
-
-## CL Code Runner
-
-A CL command may be executed by highlighting the command and pressing _Ctrl+R_.
-
-### Code Runner Example
-
-The two lines of the `CRTMSGF` command are highlighted:
-
-
-
-Press _Ctrl+R_ and success is reported:
-
-
-
-Click _Open output_ if you want more detail or if the command fails:
-
-
-
+---
+title: CLLE Language tools
+---
+
+import { CardGrid, Card, Tabs, TabItem } from '@astrojs/starlight/components';
+import { Aside, Icon } from '@astrojs/starlight/components';
+
+**Command Language** is the scripting language for the IBM i operating system. This extension assists in CLP or CLLE program development, providing:
+
+* Content assist for CL commands and parameters
+* Outline view
+* Go to or peek definition and references
+* Rename variables
+* Hover support for CL commands and parameters
+* Syntax checking
+
+It also provides support for running a CL statement with `Ctrl+r`.
+
+## Installation
+
+The CL Language tools extension can be [installed from the Marketplace](https://marketplace.visualstudio.com/items?itemName=IBM.vscode-clle) and is also part of the [IBM i Development Pack](https://marketplace.visualstudio.com/items?itemName=HalcyonTechLtd.ibm-i-development-pack).
+
+
+
+
+
+Or it can be installed from the Extension view inside Visual Code.
+
+
+
+
+
+
+
+
+## Content Assist
+
+Suppose you want to create a data area with the CRTDTAARA command. Enter CRTDTAARA __follwed by a space__, then press _Ctrl+Space_ to invoke Content Assist to produce a pick list like this:
+
+
+
+
+
+Press _Enter_ or _Tab_ to accept the highlighted _All parameters_ from the pick list and a skeleton command is created.
+
+
+
+
+
+
+
+
+
+Use`Ctrl+space` to get a pick list of special values or available variables (just one in this example):
+
+
+
+
+
+
+
+### Content Assist Snippets
+
+Prompting of most CL commands requires a connection to a server. However, there are a number of commands that are provided as snippets, which don't require a connection. `DCL`, for example, is provided as a snippet.
+
+
+
+To declare a variable, enter just `d` and get a list of commands that begin with `d`:
+
+
+
+
+
+
+
+
+
+Since the `DCL` command is highlighted, hit enter and get a pick list of available parameters:
+
+
+
+
+
+
+
+
+
+The `VAR` parameter value is selected, so enter the variable name, then tab to the `TYPE` parameter value:
+
+
+
+
+
+
+
+
+
+If all the valid valued for `TYPE` are know, just enter a valid value, for example `*CHAR`. Or delete the highlighted value and key _Ctrl+Space_ to get a pick list of the valid values:
+
+
+
+
+
+
+
+
+
+If all the valid valued for `TYPE` are know, just enter a valid value, for example `*CHAR`. Or delete the highlighted value and key _Ctrl+Space_ to get a pick list of the valid values:
+
+
+
+
+
+
+
+## Outline View
+
+In the **Outline** view, you can get an overview of all declared variables, files, and subroutines. You can click on the name of any item to jump to the definition.
+
+
+
+## Peek Definition and References
+
+In the editor, you can right-click on a variable or subroutine and use **Go to Definition** or **Go to References** to quickly jump to the definition or all references of the variable or subroutine.
+
+
+
+You can also use **Find All References** which will pop open the **References** view to show all references.
+
+
+
+Lastly, you can use any of the options under the right-click **Peak** submenu to get an inline preview of definitions or references without having to leave the current line are working on.
+
+
+
+## Rename
+
+You can right-click a variable and select **Rename Symbol** (or use the `F2` shortcut) to rename the variable. This will pop open a mini text box for you to enter the new variable name. Once you have entered the new name, hit `Enter` to proceed with renaming all instances of that variable or hit `Ctrl+Enter` to get a refactoring preview which you can use to selectively rename specific instances.
+
+
+
+## Hover Support
+
+When writing your CL programs, you can hover over a command to view a description of the commad from its documentation.
+
+
+
+This works on individual parameters and is espically useful when determining what are the allowed values for a parameter. Content assist for paramters will also include this same documentation.
+
+
+
+To view the full documentation for a command, scroll to the bottom of the hover window and select the **View Full Documentation** link. This will pop open a panel right in VS Code with the full documentation for the command which includes details on the command, parameter usage, examples, and error messages.
+
+
+
+## Syntax Checker
+
+As you write your CL programs, the syntax checker will highlight any syntax errors in your code. You can error or navigate to the **Problems** view to see the full details along with errors across all files.
+
+
+
+
+
+## CL Code Runner
+
+A CL command may be executed by highlighting the command and pressing _Ctrl+R_.
+
+### Code Runner Example
+
+The two lines of the `CRTMSGF` command are highlighted:
+
+
+
+Press _Ctrl+R_ and success is reported:
+
+
+
+Click _Open output_ if you want more detail or if the command fails:
+
+
+
Not all CL commands may be executed.
\ No newline at end of file