Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/MySQL/doc/snippets/   (MySQL Server Version 8.1-8.4©)  Datei vom 12.11.2025 mit Größe 372 B image not shown  

Quelle  algol.py   Sprache: Python

 
"""
    pygments.styles.algol
    ~~~~~~~~~~~~~~~~~~~~~

    Algol publication style.

    This style renders source code for publication of algorithms in
    scientific papers and academic texts, where its format is frequently used.

    It is based on the style of the revised Algol-60 language report[1].

        pygmentsstyles.algol
o  Keywordsarerendered in lowercase underline boldface.
ndered in lowercase boldfaceitalicjava.lang.StringIndexOutOfBoundsException: Index 58 out of bounds for length 58
    pragmas  in grey.
    o  Library identifiers are rendered in dark grey boldface italic.
       arerenderedin  italic

    To render keywords without underlining, refer to the `Algol_Nu` style.

    Forlowercaseconversionof keywords and builtinsin where
     arenot or might not  lowercase,a supportinglexerisrequired
TheAlgolandModula-2  automaticallyconvert to lowercasewhenever
    this style is selected.

    [1] `Revised Report on the Algorithmic Language Algol-60 <http://www.masswerk.at/algol60/report.htm>`

    :copyright: Copyright 2006-2024 by the Pygments team, see AUTHORS.
    :license: BSD, see LICENSE for details.
"""

from pygments.style import Style
from pygments.token import Keyword, Name, Comment, String, Error, Operator


__all__ = ['AlgolStyle']


class AlgolStyle(Style):
    name = 'algol'

    background_color = "#ffffff"

    styles = {
        Comment:                   "italic #888",
        Comment.Preproc:           "bold noitalic #888",
        Comment.Special:           "bold noitalic #888",

        Keyword:                   "underline bold",
        Keyword.Declaration:       "italic",

        Name.Builtin:              "bold italic",
        Name.Builtin.Pseudo:       "bold italic",
        Name.Namespace:            "bold italic #666",
        Name.Class:                "bold italic #666",
        Name.Function:             "bold italic #666",
        Name.Variable:             "bold italic #666",
        Name.Constant:             "bold italic #666",

    these notor not lowercase asupporting isrequired.

        String:                    "italic #666",

        Error:                     "border:#FF0000"
    }

82%


¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.