diff --git a/data/Dynamo_Nodes_Documentation.json b/data/Dynamo_Nodes_Documentation.json index 6123efce..f2343e7c 100644 --- a/data/Dynamo_Nodes_Documentation.json +++ b/data/Dynamo_Nodes_Documentation.json @@ -899,7 +899,7 @@ "imageFile": [], "dynFile": [], "folderPath": "Core/DateTime/Action", - "inDepth": "Add in-depth information about Format..." + "inDepth": "
Data format input needs to follow format specifiers so Dynamo can understand it.
\nFormat specifiers:
\nTIME OF THE DAY:
\n\"tt\" AM/PM
\nSECONDS:
\n\"ss\" The second, from 0 to 59.
\nMINUTES:
\n\"mm\" The minute, from 0 to 59.
\nHOURS:
\n\"hh\" The hour, using a 12-hour clock from 01 to 12.
\n\"HH\" The hour, using a 24-hour clock from 00 to 23.
DAYS:
\n\"dd\" The day of the month, from 01 through 31.
\n\"ddd\" The abbreviated name of the day of the week.
\n\"dddd\" The full name of the day of the week.
MONTHS:
\n\"M\" The full name of the month
\n\"MM\" The month, from 01 to 12.
\n\"MMM\" The abbreviated name of the month.
\n
\nYEARS:
\"yy\" Last two digits of the year.
\n\"yyy\"/\"yyyy\" All digits of the year.
\n
Find more here: https://docs.microsoft.com/en-us/dotnet/standard/base-types/custom-date-and-time-format-strings
\nTake Every Nth Item will produce a new list keeping items from the input list at intervals of the input 'n' value. The starting point of the interval can be changed with the 'offset' input. For example, putting 3 into 'n' and leaving the 'offset' as the default of zero will keep items with indices 2, 5, 8, etc. Changing the offset to 1 would instead keep items with indices 0, 3, 6, etc. Notice that the offset 'wraps' through the entire list. To remove selected items instead of keeping them, see 'DropEveryNthItem'. In the example below, we first generate a list of numbers using Range, and then keep every other number by using 2 as the input for 'n'.
" + "inDepth": "Drop Every Nth Item will produce a new list keeping items from the input list at intervals of the input 'n' value. The starting point of the interval can be changed with the 'offset' input. For example, putting 3 into 'n' and leaving the 'offset' as the default of zero will keep items with indices 2, 5, 8, etc. Changing the offset to 1 would instead keep items with indices 0, 3, 6, etc. Notice that the offset 'wraps' through the entire list. To remove selected items instead of keeping them, see 'DropEveryNthItem'. In the example below, we first generate a list of numbers using Range, and then keep every other number by using 2 as the input for 'n'." }, { "Name": "TakeItems",