Hacker News blockquote styling

Adds styling to blockquotes in Hacker News comments

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Hacker News blockquote styling
// @version      1.2
// @description  Adds styling to blockquotes in Hacker News comments
// @author       Ryan Buening
// @license      MIT
// @namespace    https://github.com/ryanbuening/userscripts
// @match        https://news.ycombinator.com/*
// @run-at       document-end
// ==/UserScript==

const [head] = document.getElementsByTagName('head');
const style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = `
.comment-quote {
	background: #46464620;
	font-style: italic;
	color: #464646;
	border-left-width: 3px;
	border-left-color: #46464650;
	border-left-style: solid;
	padding: 2px;
	padding-left: 5px;
}`;
head.appendChild(style);

document.querySelectorAll('.commtext').forEach(comment => {
  let quoteDiv = null;
  comment.childNodes.forEach(node => {
    const commentLine = node.textContent || node.innerText;
    if (quoteDiv || commentLine.match(/^>/)) {
      if (commentLine.startsWith('>')) {
        const quoteText = commentLine.substring(commentLine.indexOf('>') + 1);
        if (node.textContent) {
          node.textContent = quoteText;
        } else {
          node.innerText = quoteText;
        }
      }

      if (!quoteDiv) {
        quoteDiv = document.createElement('div');
        quoteDiv.classList.add('comment-quote');
        node.parentNode.insertBefore(quoteDiv, node);
      }

      quoteDiv.appendChild(node);

      if (!commentLine.match(/^>+\s*$/)) {
        quoteDiv = null;
      }
    }
  });
});