PasteRack.org
Paste # 25359
2019-06-04 07:00:10

Fork as a new paste.

Paste viewed 341 times.


Embed:

  1. #lang racket
  2.  
  3. (define (doc->pages xexpr)
  4.   (filter
  5.    (match-lambda [(cons 'draw:page _) #t] [_ #f])
  6.    (se-path*/list '(office:presentation) xexpr)))

=>