Provoked by this thread I have created the following script—which is quite useful for me and may possibly be of interest to some others here.
In essence, the script creates a new markdown record (you can specifiy the name or accept the default) then creates items links to be included in the new record as transclusions. There is a test to ensure you have selected only transcludable (sorry if the word doesn’t exist—you know what I mean) records.
The assembly is carried out by the very short and simple handler at the end of the script so you can easily change the formatting of the split between the transcluded items.
Warning: it works for me, but I’m a mere amateur so please try if first on some dummy records to ensure it does what you want.
(* This script creates a new markdown record in the chosen database
and group and then adds to that record transclusion item links for plain text,
markdown or HTML records you have selected in the database with a line drawn
between each item. It will prompt you for the name of the new record or
you can choose to use the default name. *)
-- the database to open
property pDatabase : "/Users/[path to database you wish to use]]/`[name of database]].dtBase2"
-- the group to use for tbe markdown file of transclusions
property pGroup : “[UUID of the Group in which you wish to create new record]”
tell application id "DNtp"
try
activate
-- open the database
set theDatabase to open database pDatabase
set myGroup to get record with uuid pGroup
--check that we have some records selected for transclusion
set theSelection to the selection
if (count of theSelection) is 0 then
error "Please some markdown records for transclusion"
end if
--set up the new record for the transclusions
set dAnswer to "New document"
set userEntry to display dialog ¬
"Enter the name of the new document (without the extension) or accept the default: " default answer dAnswer with title "New document for the transclusions"
set dAnswer to text returned of userEntry
set theNewRecord to create record with {name:dAnswer, type:markdown} in myGroup
--Get the UUIDs of the selected records, onvert them to item links
--and format the transclusions
set theText to plain text of theNewRecord
repeat with theRecord in (selection as list)
set theType to (type of theRecord) as string
--Remember, you can use only markdown, plain text or HTML files in transclusion
if theType is in {"markdown", "txt", "html"} then
set theUUID to uuid of item 1 of theRecord
set transcludedItem to my createTransclusion(theUUID)
set theText to theText & transcludedItem
set plain text of theNewRecord to theText
else
error "Check selected records: only markdown, plain text and HTML records are suitable for transclusion"
end if
end repeat
set root of viewer window 1 to myGroup
on error error_message number error_number
if the error_number is not -128 then display alert "DEVONthink" message error_message as warning
return
end try
end tell
--The handler to format the transclusion links is separate simply to make it easy
--to change the formatting between items if you wish.
on createTransclusion(theId)
set theLink to "{{" & "x-devonthink-item://" & theId & "}}" & return & "---" & " " & return
return theLink
end createTransclusion
One thing you could modify, though it’s not wrong how you did it…
With any DEVONthink record there is a UUID which is part of its reference URL.
So instead of getting the UUID, you could have gotten the reference URL and avoided having to hard-code the x-devonthink-item://. in the creation handler.
set recURL to reference URL of theRecord
……………
set theLink to "{{" & recURL & "}}" & return & "---" & " " & return
Oh, that’s really helpful: thanks. I also use the same structure in another of my journal scripts and what you suggest is really much neater. I’ll amend both scripts and much appreciate the observation.
Instead of updating the text on every repeat, you could cache the updated text into a list then update the text at the end.
Here is a simple example…
property validTypes : {"markdown", "txt"}
tell application id "DNtp"
set textUpdates to {} -- Set up an empty list to populate with new strings, etc.
set currentRecord to content record -- Get the current doc
if (type of currentRecord as string) is in validTypes then -- Check the document type
set currentText to (plain text of currentRecord & linefeed) -- Get the plain text of the file and append a linefeed
repeat with a from 1 to 10 -- A simple counter for the example
copy ("[" & a & "](https://www.devontechnologies.com)" & linefeed) to end of textUpdates -- Copy the string to the list, noting a linefeed is added after each line
end repeat -- Keep adding to the list until the loop expires
set plain text of currentRecord to (currentText & (textUpdates as string)) -- Update the text of the file in one move
end if
end tell
With a big debt of gratitude owed to my teacher and mentor, @Bluefrog, here is a refined version 2.0 of the script. It now uses set recURL to reference URL of theRecord to obtain the DT item link directly (and hence dispense with construction of the link, as in version 1.0). In particular (with a noticeable increase in speed when many records are selected for transclusion) it incorporates an empty list for the item links (set textUpdates to {} and set plain text of theNewRecord to (textUpdates as string)) so enabling a single update of the new record when all item links have been gathered.
(* This script creates a new markdown record in the chosen database
and group and then adds to that record transclusion item links for plain text,
markdown or HTML records you have selected in the database with a line drawn
between each item. It will prompt you for the name of the new record or
you can choose to use the default name. *)
-- the database to open
property pDatabase : "/Users/[path to database you wish to use]/*.dtBase2"
-- the group to use for tbe markdown file of transclusions
property pGroup : “[UUID of relevant group]”
property validTypes : {"markdown", "txt", "html"}
tell application id "DNtp"
try
activate
-- open the database
set theDatabase to open database pDatabase
set myGroup to get record with uuid pGroup
--check that we have some records selected for transclusion
set theSelection to the selection
if (count of theSelection) is 0 then
error "Please select some markdown records for transclusion"
end if
--set up the new record for the transclusions
set dAnswer to "New document"
set userEntry to display dialog ¬
"Enter the name of the new document (without the extension) or accept the default: " default answer dAnswer with title "New document for the transclusions"
set dAnswer to text returned of userEntry
set theNewRecord to create record with {name:dAnswer, type:markdown} in myGroup
set textUpdates to {} -- Set up an empty list to populate with new strings, etc.
repeat with theRecord in (selection as list)
if (type of theRecord as string) is in validTypes then -- Check the document type
--Get the reference URLs of the selected records, convert them to item links
--and format the transclusions
set recURL to reference URL of theRecord
set transcludedItem to my createTransclusion(recURL)
copy (transcludedItem & linefeed) to end of textUpdates -- Copy the string to the list, noting a linefeed is added after each line
else
error "Check selected records: only markdown, plain text and HTML records are suitable for transclusion"
end if
end repeat -- Keep adding to the list until the loop expires
set plain text of theNewRecord to (textUpdates as string) -- Update the text of the file in one move
set root of viewer window 1 to myGroup
on error error_message number error_number
if the error_number is not -128 then display alert "DEVONthink" message error_message as warning
return
end try
end tell
--The handler to format the transclusion links is separate simply to make it easy
--to change the formatting between items if you wish.
on createTransclusion(theURL)
set theLink to "{{" & theURL & "}}" & linefeed & linefeed & "---" & linefeed
return theLink
end createTransclusion