Skip to content

Commit

Permalink
Add a TODO comment
Browse files Browse the repository at this point in the history
  • Loading branch information
BaseMax committed Jan 8, 2025
1 parent 8a20a53 commit df9769e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/generator_layout.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ char* attribute_value_handler(ast_layout_attribute_t* attribute, char* value)
}

string_append_str(buf, "url(");
string_append_str(buf, value);
// string_append_char(buf, '\"');
string_append_str(buf, value); // TODO: add "" at the begining and the end, and replaces " to \" in the value string
// string_append_char(buf, '\"');
string_append_str(buf, ")");

char* buf_value = string_strdup(buf->data);
Expand Down

0 comments on commit df9769e

Please sign in to comment.