@@ -30,7 +30,7 @@ export interface Block {
30
30
31
31
/**
32
32
* Searches a markdown document for special sections that `automd` can update.
33
- *
33
+ *
34
34
* @param md - The markdown document as a string.
35
35
* @returns an array of blocks that can be updated automatically. {@link Block}
36
36
*/
@@ -63,7 +63,7 @@ export function findBlocks(md: string): Block[] {
63
63
64
64
/**
65
65
* Checks if a markdown document contains sections that can be automatically updated.
66
- *
66
+ *
67
67
* @param md - The markdown document as a string.
68
68
* @returns true if there are `automd` sections, false otherwise.
69
69
*/
@@ -74,12 +74,12 @@ export function containsAutomd(md: string) {
74
74
/**
75
75
* Converts a string of raw arguments to an object.
76
76
* Each argument is separated by spaces. Arguments can be key-value pairs separated by '='.
77
- * If an argument starts with "no-", the key is set to false.
77
+ * If an argument starts with "no-", the key is set to false.
78
78
* Otherwise it sets the key to true. Keys are converted to camelCase.
79
79
* Values are processed to determine their actual type (e.g. string, boolean).
80
- *
80
+ *
81
81
* @param {string } rawArgs - The string of arguments to parse.
82
- * @return {Object } - An object with keys derived from the arguments.
82
+ * @return {Object } - An object with keys derived from the arguments.
83
83
* Keys are in camelCase. Values are true, false, or strings.
84
84
*/
85
85
export function parseRawArgs ( rawArgs : string ) {
0 commit comments