This could be very interesting, since then you could very easily create a table with the wordcount of every scene via dataview. Doing so also would not be very hard, as it is basically prepending the results of wc on every file.
...however, it would also entail to remove yaml-headings during compile 😕
The text was updated successfully, but these errors were encountered:
I don't want to be in the business of editing notes directly, so this in particular is out of scope. However, as noted in the README, I'd like to see where this feature request goes and then add per-scene, -draft, and -project word counts from there.
btw, I found a "workaround" via dataview. Dataview does not count characters, but is does count bytes, which are roughly similar to characters. And taking estimations that the average word length of an English word ist 4.79, is possible estimate the characters and words of a draft.
TABLE file.size as "Character Est.", round(file.size / 4.79) as "Word Est. (English)"
FROM "Draftfolder"
SORT file.size DESC
Only issue is that the scenes do not appear in the same order as in longform.
This could be very interesting, since then you could very easily create a table with the wordcount of every scene via dataview. Doing so also would not be very hard, as it is basically prepending the results of wc on every file.
...however, it would also entail to remove yaml-headings during compile😕
The text was updated successfully, but these errors were encountered: