You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -82,7 +112,7 @@ update the buffer to reflect the values it contains."
82
112
;; Get the current values
83
113
(let ((current (org-blog-buffer-extract-post)))
84
114
(mapc
85
-
#'(lambda (item)
115
+
(lambda (item)
86
116
(let ((k (car item))
87
117
(v (cdr item))
88
118
val existing)
@@ -112,8 +142,8 @@ update the buffer to reflect the values it contains."
112
142
;; Reverse sort fields to insert alphabetically
113
143
(sort
114
144
(copy-alist merge)
115
-
#'(lambda (ab)
116
-
(string< (car b) (car a)))))))))
145
+
(lambda (ab)
146
+
(string< (car b) (car a)))))))))
117
147
118
148
;;;; Declare tests if ert is loaded
119
149
(when (featurep'ert)
@@ -137,10 +167,19 @@ update the buffer to reflect the values it contains."
137
167
#+TITLE: Test 1 Title
138
168
#+POST_TYPE: post
139
169
140
-
Just a little bit of content.")
170
+
Just a little bit of content.
171
+
There is still part of the paragraph. Line breaks are refolded.
172
+
173
+
#+BEGIN_VERSE
174
+
Though the material in verse should
175
+
retain
176
+
its line
177
+
breaks
178
+
#+END_VERSE
179
+
")
141
180
(post-struct '((:blog."t1b")
142
181
(:category"t1c1""t1c2")
143
-
(:content."<p>\nJust a little bit of content.</p>\n")
182
+
(:content."<p>Just a little bit of content. There is still part of the paragraph. Line breaks are refolded.</p><p class=\"verse\">Though the material in verse should<br/>retain<br/>its line<br/>breaks<br/></p>")
0 commit comments