Enable TOC button in Help Viewer

This commit is contained in:
1024jp 2023-04-15 14:59:25 +09:00
parent 623ef89ba1
commit 149067c54f
187 changed files with 443 additions and 53 deletions

View File

@ -13,6 +13,7 @@ Change Log
### Improvements
- Remove the Open command in the Dock menu.
- Enable the ToC button in Help Viewer.
- Update Swift syntax style to fix highlighting with `/` characters.
- [non-AppStore ver.] Update Sparkle from 2.4.0 to 2.4.1.

View File

@ -0,0 +1,24 @@
/*
Help Script for Table of Contents
CotEditor
https://coteditor.com
© 2023 1024jp
*/
function toggleTOC() {
const parentDirectory = window.location.href.split('/').slice(-2)[0]
if (parentDirectory == 'pgs') {
window.location = "../toc.html";
} else {
window.location = "toc.html";
}
}
// enable toc button in the viewer's toolbar
window.setTimeout(function() {
window.HelpViewer.showTOCButton(true, toggleTOC, toggleTOC);
window.HelpViewer.setTOCButton(true);
}, 100);

View File

@ -6,6 +6,8 @@
<meta name="AppleIcon" content="../Shared/gfx/icon_16x16@2x.png"/>
<meta name="robots" content="noindex"/>
<link rel="stylesheet" href="../Shared/sty/top.css"/>
<script defer src="../Shared/js/toc.js"></script>
<title>CotEditor User Guide</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="text encoding, encoding, detction"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Use encoding declarations for encoding detection in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="cot, command"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Work with cot command</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="File Drop, pre-formatted strings"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Write insertion format for File Drop in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="line ending, newline, line break, LF, CR, CRLF, NEL, LS, PS"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Handle various types of line endings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="regular expression, regex, RE"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Use the regular expression in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="text encoding, Shift JIS, japanese"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Use four kinds of Shift JIS properly in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="source code, license"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>CotEditors source code in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="text encoding, yen, backslash"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If the Yen sign appears as a backslash in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="garbled character, encoding"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If characters arent displayed correctly in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="save, access privilege"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If you cant save a file in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="crash, abort"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If CotEditor quits unexpectedly</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="issue, problem, solution, answer, question, environmnet, trouble, troubleshooting"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If you cant find a solution in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="coloring, recoloring, re-color all"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If syntax coloring seems not working properly in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="key binding, shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>If your keyboard shortcut doesnt work as you expect in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Word Completion, complete words, completing"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Complete a word in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="count, characters, advanced character count,"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Count characters in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Word Completion, possible completion"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change the scope of completion words in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="text encoding, detection"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change priorities of text encodings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="font, character, font type, font size, customize"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change font type in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="key bindings, shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Customize keyboard shortcuts in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="theme, syntax coloring, highlight"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Customize themes in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="toolbar, customizing"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Customize toolbar in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="invisible characters, invisibles, control characters, space, tab, line ending"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Display invisible characters in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="multi cursor, multi insertion, multiple cursors, rectangular selection"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Edit multiple points in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="File Drop"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Drop files to editor in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="find,replace,replacement,regex,regular expression"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Find or replace text in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="line ending, newline, LF, CR, CRLF"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Find inconsistent line endings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="search, replace, line ending, newline, line break"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Find or replace a line ending in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="indent, outdent, shift, identation"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Indent text in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="input, insert, unicode, code point, hex"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Input a character using Unicode code point in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="unicode, character, code point"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Get information about a character in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Get Info, information"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Get information about a document in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Get Info, information, incompatible characters"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Find characters incompatible with document encoding in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Go to, menu"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Go to a specific line in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="find,replace,replacement,regex,regular expression,batch"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Replace text by multiple rules in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="invisible, file, open, hidden"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Open hidden files in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="paste, paste exactly, clipboard, line ending"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Paste text in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="sort, pattern sort"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Sort lines using specific pattern in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="print, header, footer"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Print a document in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="selecting rectangular area"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Select rectangular area in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Outline"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Build Outline of a document in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="splitting, split editor, split view"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Split editor in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="uninstall"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Uninstall CotEditor</title>
</head>

View File

@ -5,6 +5,8 @@
<meta name="keywords" content="version, history, changelog, release notes"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<link rel="stylesheet" href="../../Shared/sty/releasenotes.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Release notes for CotEditor</title>
</head>

View File

@ -5,6 +5,8 @@
<meta name="keywords" content="Script Menu, script, script bundle, hook"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<link rel="stylesheet" href="../../Shared/sty/pygmentize.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Add scripting hooks to CotEditor scripts</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Script menu, script"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Customize Script menu in CotEditor</title>
</head>

View File

@ -5,6 +5,8 @@
<meta name="keywords" content="Script menu, script, AppleScript, JXA, JavaScript"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<link rel="stylesheet" href="../../Shared/sty/applescript.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Script CotEditor with AppleScript</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="script, AppleScript, terminology"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Support different CotEditor versions in AppleScript</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Script menu, script, scripting, macro"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Script CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Script Menu, script"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Script CotEditor with UNIX script</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="settings, preferences"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Appearance settings, Appearance, appearance"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Appearance settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Edit settings, edit, edit style"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Edit settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Format settings, format, line endings, new line, encoding, syntax"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Format settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="General settings, general"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change General settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Key Bindings settings, shortcuts, keyboard shortcut, shortcut"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Key Bindings settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Print settings, print"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Print settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Snippets settings, snippet, File Drop"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Snippets settings in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Window settings, window"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Change Window settings in CotEditor</title>
</head>

View File

@ -3,8 +3,10 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="migration, specification change,outline,AppleScript"/>
<title>Important changes on CotEditor 2.0</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Important changes on CotEditor 2.0</title>
</head>
<body>

View File

@ -3,8 +3,10 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="migration, specification change, sandbox"/>
<title>Important changes on CotEditor 2.2</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Important changes on CotEditor 2.2</title>
</head>
<body>

View File

@ -3,8 +3,10 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="migration, specification change, line ending, line break"/>
<title>Important changes on CotEditor 4.2</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Important changes on CotEditor 4.2</title>
</head>
<body>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="comment, comment-out, uncomment"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Define comment delimiters in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Word Completion, completion, completion list, possible completions"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Define completion candidates in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="syntax coloring, syntax style, Outline, possible completions"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Define a syntax style in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="syntax style, file mapping, extension, shebang, interpreter"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Map files to syntax styles in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="syntax style"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Define syntax highlighting in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="syntax style, metadata"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Fill syntax style information in CotEditor</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="Outline"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Define Outline extraction rules in CotEditor</title>
</head>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 2.0?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 2.0?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 2.1?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 2.1?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 2.2?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 2.2?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 2.3?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 2.3?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 2.4?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 2.4?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 2.5?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 2.5?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.0?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.0?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.1?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.1?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.2?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.2?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.3?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.3?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.4?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.4?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.5?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.5?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.6?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.6?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.7?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.7?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.8?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.8?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 3.9?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 3.9?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.0?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 4.0?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.1?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 4.1?</title>
</head>
<body>

View File

@ -3,8 +3,10 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.2?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 4.2?</title>
</head>
<body>

View File

@ -4,8 +4,10 @@
<meta charset="UTF-8"/>
<meta name="robots" content="noindex"/>s
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.3?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 4.3?</title>
</head>
<body>

View File

@ -3,8 +3,10 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.4?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 4.4?</title>
</head>
<body>

View File

@ -3,8 +3,10 @@
<head>
<meta charset="UTF-8"/>
<meta name="keywords" content="what's new, highlights, release"/>
<title>Whats new in CotEditor 4.5?</title>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>Whats new in CotEditor 4.5?</title>
</head>
<body>

View File

@ -6,6 +6,8 @@
<meta name="AppleIcon" content="../Shared/gfx/icon_16x16@2x.png"/>
<meta name="robots" content="noindex"/>
<link rel="stylesheet" href="../Shared/sty/top.css"/>
<script defer src="../Shared/js/toc.js"></script>
<title>CotEditorユーザガイド</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="テキストエンコーディング, エンコーディング, 自動認識"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>CotEditorでエンコーディング宣言を参照する</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="cot, コマンド"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>cotコマンドと連携する</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="ファイルドロップ, 定型文字列"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>CotEditorでファイルドロップの挿入フォーマットを作成する</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="line ending, newline, LF, CR, CRLF, NEL, LS, PS, 改行"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>CotEditorで多様な改行コードを扱う</title>
</head>

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8"/>
<meta name="keywords" content="正規表現, regex, RE"/>
<link rel="stylesheet" href="../../Shared/sty/standard.css"/>
<script defer src="../../Shared/js/toc.js"></script>
<title>CotEditorで正規表現を使う</title>
</head>

Some files were not shown because too many files have changed in this diff Show More