From 972594a78a51b3598d8d92944d2ae40066bb6c69 Mon Sep 17 00:00:00 2001 From: Chris Hunt Date: Mon, 18 Dec 2023 09:23:37 -0500 Subject: [PATCH] Updates README --- README.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/README.md b/README.md index e73c3d4..6aa0cb9 100644 --- a/README.md +++ b/README.md @@ -32,3 +32,21 @@ $config = Import-ConfigData -Path config.psd1 $config.DriveName data ``` + +These config files all return the same PowerShell object. + +```toml +#config.toml +DriveName = "data" +``` + +```yaml +#config.yml +DriveName: data +``` + +```json +{ + "DriveName": "data" +} +```