style: Pint 포맷팅 적용

This commit is contained in:
김보곤
2026-02-25 11:45:01 +09:00
parent 68b1622a4e
commit 9a7c548246
199 changed files with 1420 additions and 1083 deletions

View File

@@ -16,6 +16,19 @@
@push('scripts')
@include('partials.react-cdn')
<script src="https://unpkg.com/lucide@0.469.0?v={{ time() }}"></script>
<script>
// SVG 속성 에러 진단: setAttribute 호출을 가로채서 따옴표가 포함된 값을 추적
(function() {
var origSetAttr = Element.prototype.setAttribute;
Element.prototype.setAttribute = function(name, value) {
var s = String(value);
if ((name === 'viewBox' || name === 'd') && s.charAt(0) === '"') {
console.error('[SVG-DIAG] Bad ' + name + '=' + JSON.stringify(s), 'tag=' + this.tagName, new Error().stack);
}
return origSetAttr.call(this, name, value);
};
})();
</script>
@verbatim
<script type="text/babel">
const { useState, useRef, useEffect } = React;