Skip to content

Commit

Permalink
style: prettify code
Browse files Browse the repository at this point in the history
  • Loading branch information
yanglbme authored and actions-user committed Oct 26, 2021
1 parent 865ec17 commit 55c9bc2
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/assets/scripts/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,14 +88,8 @@ export function customCssWithTemplate(jsonString, color, theme) {
custom_theme.inline.wx_link,
jsonString.wx_link
);
custom_theme.block.ul = Object.assign(
custom_theme.block.ul,
jsonString.ul
);
custom_theme.block.ol = Object.assign(
custom_theme.block.ol,
jsonString.ol
);
custom_theme.block.ul = Object.assign(custom_theme.block.ul, jsonString.ul);
custom_theme.block.ol = Object.assign(custom_theme.block.ol, jsonString.ol);
custom_theme.inline.listitem = Object.assign(
custom_theme.inline.listitem,
jsonString.li
Expand Down

0 comments on commit 55c9bc2

Please sign in to comment.