utf-8 output when writing wordpress imported files
the file writer in wordpress import did not set external-format
This commit is contained in:
parent
81fcf3a47a
commit
3a37b8339b
1 changed files with 2 additions and 1 deletions
|
@ -43,7 +43,8 @@
|
|||
(with-open-file (out (merge-pathnames path (or output (repo *config*)))
|
||||
:direction :output
|
||||
:if-exists :supersede
|
||||
:if-does-not-exist :create)
|
||||
:if-does-not-exist :create
|
||||
:external-format :utf-8)
|
||||
;; TODO: What other data/metadata should we write out?
|
||||
(format out ";;;;;~%")
|
||||
(format out "title: ~A~%" title)
|
||||
|
|
Loading…
Add table
Reference in a new issue