Fix Aliyun Code Display

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

目前為 2019-07-03 提交的版本,檢視 最新版本

// ==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

// ==/UserScript==

$(document).ready(function(){
 $(".hljs").removeAttr('style');
});