Skip to content

Commit

Permalink
Retain old piksemel behaviour
Browse files Browse the repository at this point in the history
  • Loading branch information
Zaryob authored Sep 16, 2024
1 parent 1219be9 commit 459ec5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/iks.c
Original file line number Diff line number Diff line change
Expand Up @@ -803,9 +803,9 @@ iks_string (ikstack *s, iks *x)
*t++ = ' ';
t = my_strcat (t, IKS_ATTRIB_NAME (y), 0);
*t++ = '=';
*t++ = '\'';
*t++ = '"';
t = escape (t, IKS_ATTRIB_VALUE (y), strlen (IKS_ATTRIB_VALUE (y)));
*t++ = '\'';
*t++ = '"';
y = y->next;
}
if (IKS_TAG_CHILDREN (x)) {
Expand Down

0 comments on commit 459ec5d

Please sign in to comment.