Fix Aliyun Code Display

Fix highlight.js code display problem on yq.aliyun.com; this problem pertains to browsers on Linux

질문, 리뷰하거나, 이 스크립트를 신고하세요.
  // ==UserScript==
// @name Fix Aliyun Code Display
// @namespace Violentmonkey Scripts
// @match https://yq.aliyun.com/*
// @grant none
// @description Fix highlight.js code display problem on yq.aliyun.com; this problem pertains to browsers on Linux
// @version 0.1.1

// ==/UserScript==

$(window).load(function(){
  $(".hljs").removeAttr('style');
});