public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
From: "'Nick Bart' via pandoc-discuss" <pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
To: "pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org"
	<pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
Subject: Re: Table of Contents Insertion
Date: Thu, 09 Dec 2021 16:47:24 +0000	[thread overview]
Message-ID: <I80KhRRTIZtqDS6YtSd0sn82PQLGziJEjj2sjDDddOo_KTaCx9bTm1rY-DJsxjJSc2ymofEp2QHoQ6hyzN1y46N0No6jor8j_oMBYWEdDjM=@protonmail.com> (raw)
In-Reply-To: <09cc470d-3c03-4d79-bc47-7158080a9413n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>

[-- Attachment #1: Type: text/plain, Size: 2458 bytes --]

AFAIK, pandoc can only insert a placeholder for a ToC into a docx document, but not create a full ToC itself.

The latter requires opening the document in MS Word, LibreOffice or a similar program and updating the ToC manually. (In LibreOffice, the menu command is Tools > Update > Update All; MS Word instructions are at https://support.microsoft.com/en-us/office/update-a-table-of-contents-6c727329-d8fd-44fe-83b7-fa7fe3d8ac7a.)

Updating from the command line is possible, too (at least when using LibreOffice [LO]).

This involves a macro like the following (which borrows ideas from https://ask.libreoffice.org/t/how-to-automatically-update-indices-in-headless-mode/11878), saved in LO under, e.g., "Standard.Module2.UpdateAllIndexes":

```
sub UpdateAllIndexes(sDocUrl as string)

dim oDocument as object
dim dispatcher as object

dim propExp(0) as new com.sun.star.beans.PropertyValue

dim sNewUrl as string

Dim FileProperties(1) As New com.sun.star.beans.PropertyValue
FileProperties(0).Name = "Hidden"
FileProperties(0).Value = True

if fileExists(sDocUrl) then
oDocument = starDesktop.loadComponentFromUrl(convertToUrl(sDocUrl), "_blank", 0, FileProperties())
dispatcher = createUnoService("com.sun.star.frame.DispatchHelper")
dispatcher.executeDispatch(oDocument.CurrentController.Frame, ".uno:UpdateAllIndexes", "", 0, Array())
GlobalScope.BasicLibraries.LoadLibrary("Tools")
propExp(0).Name = "FilterName"
propExp(0).Value = "MS Word 2007 XML"
sNewUrl = GetFileNameWithoutExtension(sDocUrl) & "_updated.docx"
oDocument.storeToURL(convertToUrl(sNewUrl), propExp())
end if

end sub
```

This macro can then be run from the command line (the following works on macOS):

```
/Applications/LibreOffice.app/Contents/MacOS/soffice --invisible --nofirststartwizard --headless --norestore "macro:///Standard.Module2.UpdateAllIndexes(/full/path/to/file.docx)"
```

… creating a new file `/full/path/to/file_updated.docx`.

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/I80KhRRTIZtqDS6YtSd0sn82PQLGziJEjj2sjDDddOo_KTaCx9bTm1rY-DJsxjJSc2ymofEp2QHoQ6hyzN1y46N0No6jor8j_oMBYWEdDjM%3D%40protonmail.com.

[-- Attachment #2: Type: text/html, Size: 3779 bytes --]

  parent reply	other threads:[~2021-12-09 16:47 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-09 14:17 Chad Samsel
     [not found] ` <09cc470d-3c03-4d79-bc47-7158080a9413n-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2021-12-09 16:47   ` 'Nick Bart' via pandoc-discuss [this message]
2021-12-09 17:36     ` Chad Samsel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='I80KhRRTIZtqDS6YtSd0sn82PQLGziJEjj2sjDDddOo_KTaCx9bTm1rY-DJsxjJSc2ymofEp2QHoQ6hyzN1y46N0No6jor8j_oMBYWEdDjM=@protonmail.com' \
    --to=pandoc-discuss-/jypxa39uh5tlh3mbocffw@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).