parseMacrosFile

Parses macros files, usually with extension .ddoc.

Macros files are files that only contains macros definitions. Newline after a macro is part of this macro, so a blank line between macro A and macro B will lead to macro A having a trailing newline. If you wish to split your file in blocks, terminate each block with a dummy macro, e.g: '_' (underscore).

string[string]
parseMacrosFile
(
R
)
()
if (
isInputRange!(R)
)

Parameters

paths R

A variadic array with paths to ddoc files.

Return Value

Type: string[string]

An associative array containing all the macros parsed from the files. In case of multiple definitions, macros are overriden.

Meta