From cb781b853d1c18d19ee05c5b4e34bc4ee16ed8b4 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Sat, 15 Feb 2025 21:45:12 +0100 Subject: [PATCH] =?UTF-8?q?Add=20additional=20=E2=80=9Cgetting=20started?= =?UTF-8?q?=E2=80=9D=20section?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ini.d | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/ini.d b/ini.d index ddb0884..ce44460 100644 --- a/ini.d +++ b/ini.d @@ -9,6 +9,15 @@ This module provides a configurable INI parser with support for multiple “dialects” of the format. + ### Getting started + + $(LIST + * [parseIniDocument] – Parse INI string into a DOM-like document. + * [parseIniAA] – Parse INI string into an associative array. + * [stringifyIni] – Serialize an [IniDocument] or an associative array + to a string of data in INI format. + ) + --- import arsd.ini;