diff options
Diffstat (limited to 'lisp/hcel-utils.el')
-rw-r--r-- | lisp/hcel-utils.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/hcel-utils.el b/lisp/hcel-utils.el index 9db5d81..9526521 100644 --- a/lisp/hcel-utils.el +++ b/lisp/hcel-utils.el @@ -121,8 +121,10 @@ Example of an idSrcSpan: (replace-regexp-in-string "\n" " " (mapconcat (lambda (component) - (or (alist-get 'name component) - (alist-get 'contents component))) + (propertize + (or (alist-get 'name component) + (alist-get 'contents component)) + 'internal-id (alist-get 'internalId component))) components ""))))))) |