タグ

2014年10月27日のブックマーク (4件)

  • HTML Tidy Online

    HTML Tidy is a tool for checking and cleaning up HTML source files. It is especially useful for finding and correcting errors in deeply nested HTML, or for making grotesque code legible once more. This online version enables you use it without installing the client tool on your PC. More information about HTML Tidy is available from the original W3C page, and you can download a local copy of it fro

  • Tidy

    Tidy is a console application for macOS, Linux, Windows, UNIX, and more. It corrects and cleans up HTML and XML documents by fixing markup errors and upgrading legacy code to modern standards. libtidy is a C static and dynamic library that developers can integrate into their applications in order to bring all of Tidy’s power to your favorite tools. libtidy is used today in desktop applications, we

  • JavaScript Garden

    JavaScript Garden はJavaScriptというプログラム言語の一番奇妙な部分についてのドキュメント集です。 このドキュメントはJavaScriptという言語に慣れていないプログラマーがこの言語について深く知ろうとする際に遭遇する、良くある間違い・小さなバグ・パフォーマンスの問題・悪い習慣などを避ける為のアドバイスを与えます。 JavaScript GardenはJavaScriptを教える事を目的にしていません。このガイドの項目を理解する為には、この言語に対する前提知識がある事を推奨します。この言語の基礎部分についてはMozilla Developer Networkのガイド がオススメです。 著者 このガイドは愛すべきStack Overflowの2人のユーザーIvo Wetzel (執筆)とZhang Yi Jiang (デザイン)によって作られました。 貢献者 貢献

  • JavaScript 2.0 セマンティクス表記法

    06/13/2003 (Fri) JavaScript 2.0 のセマンティクス (意味) は Algol ライクな擬似コードで記述する。以下の節ではセマンティクスの概念、式、プロシジャ (手続き)、及びアクションで使用する表記を定義する。 演算子 以下の表にこのドキュメントの式で使用される演算子を要約する。演算子はグループ内で優先順位の最も高いもの (最も束縛の強いもの) から優先順位の最も低いもの (最も束縛の弱いもの) の順に並べてある。関係演算子以外の同じグループに属する演算子は同じ優先順位を持ち、結合則は全て左から右である。つまり、例えば 7–3+2–1 は 7–(3+(2–1)) や (7–(3+2))–1 とはならず ((7–3)+2)–1 となる。関係演算子は数学の慣習通りカスケードし、 a = b  c < d は以下のような意味になる。 a = b and b  c a