sleipnir 0.3.0

Memory safe font operations for Google Fonts.
Documentation
.glyph-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 15px;
  margin-top: 20px;
}
.glyph-card {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 140px;
  content-visibility: auto;
  contain-intrinsic-size: 140px;
}
.glyph-svg {
  flex: 1;
  display: grid;
  place-items: center;
}
.glyph-svg > * {
  max-width: 100%;
  max-height: 100%;
}
.glyph-name {
  font: 12px monospace;
  color: #666;
  word-break: break-all;
}
.errors-section {
  margin-top: 40px;
  border-top: 2px solid #fcc;
  padding-top: 20px;
}
.errors-title {
  color: #c00;
}
.error-log {
  background: #fff5f5;
  border: 1px solid #fcc;
  padding: 15px;
  white-space: pre-wrap;
  color: #900;
}