style: Pint 포맷팅 적용
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user