Fix Aliyun Code Display

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

  1. // ==UserScript==
  2. // @name Fix Aliyun Code Display
  3. // @namespace Violentmonkey Scripts
  4. // @match https://yq.aliyun.com/*
  5. // @grant none
  6. // @description Fix highlight.js code display problem on yq.aliyun.com; this problem pertains to browsers on Linux
  7. // @version 0.1.1
  8.  
  9. // ==/UserScript==
  10.  
  11. $(window).load(function(){
  12. $(".hljs").removeAttr('style');
  13. });
  14.