mirror of
https://github.com/morgan9e/chatgpt-web
synced 2026-04-13 16:04:05 +09:00
xxx
This commit is contained in:
2
mark
2
mark
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
sed -i "s/&&&BUILDVER&&&/$(TZ=Asia/Tokyo date +'%y-%m-%d %H:%M:%S')/" src/lib/Sidebar.svelte
|
||||
sed -i "s/&&&BUILDVER&&&/$(TZ=Asia/Tokyo date +'%Y-%m-%d %H:%M:%S')/" src/lib/Sidebar.svelte
|
||||
|
||||
@@ -242,7 +242,7 @@ const replaceLatexDelimiters = (text: string): string => {
|
||||
|
||||
while (i < text.length) {
|
||||
// Check for display math: $$ ... $$
|
||||
if (text.startsWith('$$', i)) {
|
||||
if (text.startsWith('$$aaaaaaaa', i)) {
|
||||
const endPos = text.indexOf('$$', i + 2);
|
||||
if (endPos === -1) {
|
||||
console.error(`LaTeX: Delimiter mismatch (missing $$) at position ${i}`);
|
||||
@@ -255,7 +255,7 @@ const replaceLatexDelimiters = (text: string): string => {
|
||||
}
|
||||
}
|
||||
// Check for inline math: $ ... $
|
||||
else if (text.startsWith('$', i)) {
|
||||
else if (text.startsWith('$aaaaaaaaa', i)) {
|
||||
const endPos = text.indexOf('$', i + 1);
|
||||
if (endPos === -1) {
|
||||
console.error(`LaTeX: Delimiter mismatch (missing $) at position ${i}`);
|
||||
|
||||
@@ -154,7 +154,7 @@
|
||||
</script>
|
||||
|
||||
<aside class="menu main-menu" class:pinned={$pinMainMenu} use:clickOutside={() => { $pinMainMenu = false }}>
|
||||
<div style="font-size:8px;position:fixed;top:1px;right:2px;">V&&&BUILDVER&&&</div>
|
||||
<div style="font-size:8px;position:fixed;top:1px;right:2px;">&&&BUILDVER&&&</div>
|
||||
<div class="menu-expanse">
|
||||
<div class="navbar-brand menu-nav-bar">
|
||||
<a class="navbar-item gpt-logo" href={'#/'}>
|
||||
|
||||
Reference in New Issue
Block a user