mcat 0.4.2

a powerfull extended cat command, to cat all the things you couldn't before
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  min-width: 1200px;
  padding: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--keyword);
  margin-top: 1.5em;
}

h1 {
  font-size: 2.2em;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.3em;
}

h2 {
  font-size: 1.8em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.2em;
}

h3 {
  font-size: 1.4em;
}

h4,
h5,
h6 {
  color: var(--constant);
}

a {
  color: #66aaff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

code {
  background-color: var(--surface);
  color: var(--function);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

pre {
  background-color: var(--surface);
  color: var(--foreground);
  padding: 1em;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  white-space: pre-wrap;
  /* Wrap long lines */
  word-wrap: break-word;
  overflow-y: hidden;
  /* Disable vertical scrolling */
}

pre code {
  background: none;
  padding: 0;
  color: inherit;
  display: block;
}

pre::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar */
}

blockquote {
  border-left: 4px solid var(--type);
  background-color: var(--surface);
  padding: 0.8em 1em;
  color: var(--comment);
  margin: 1em 0;
}

ul,
ol {
  padding-left: 2em;
}

li::marker {
  color: var(--function);
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 1em 0;
}

th,
td {
  border: 1px solid var(--border);
  padding: 0.6em 1em;
}

th {
  background-color: var(--surface);
  color: var(--function);
}

tr:nth-child(even) {
  background-color: var(--surface);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2em 0;
}