Github Markup Language



The Pango Markup Language
PrevThe pango Class ReferenceNext

We show rendered markup in several places on GitHub, most notably including a project’s main README on the Repository page itself. Starting today, GitHub supports relative links in markup files. By definition, a markup language is a system for annotating a document in a way that is syntactically distinguishable from the text. HTML markup consists of tags and attributes, character-based data-types, character references and entity references.

The Pango Markup Language

The Pango Markup Language — a simple markup language for encoding attributes with text.

Description

Github markdown language

The pango markup language is a very simple SGML-like language thatallows you specify attributes with the text they are applied to by using asmall set of markup tags. A simple example of a string using markupis:

<span foreground='blue' size='100'>Blue text</span> is <i>cool</i>!

Github Markdown Tutorial

Using the pango markup language to markup text and parsing theresult with the pango.parse_markup() function is a convenient way to generate the pango.AttrListand plain text that can be used in a pango.Layout.

The root tag of a marked-up document is<markup>, but the pango.parse_markup() function allows you to omit this tag, so you will most likely never need touse it. The most general markup tag is <span>. The<span> tag has the following attributes:

font_desc

A font description string, such as 'Sans Italic 12';note that any other span attributes will override this description. So ifyou have 'Sans Italic' and also a attribute, you will getSans normal, not italic.

font_family

A font family name such as 'normal', 'sans', 'serif' or'monospace'.

face

A synonym for font_family

size

The font size in thousandths of a point, or one of theabsolute sizes 'xx-small', 'x-small', 'small', 'medium', 'large', 'x-large','xx-large', or one of the relative sizes 'smaller' or 'larger'.

style

The slant style - one of 'normal', 'oblique', or'italic'

weight

The font weight - one of 'ultralight', 'light','normal', 'bold', 'ultrabold', 'heavy', or a numeric weight.

variant

The font variant - either 'normal' or'smallcaps'.

stretch

The font width - one of 'ultracondensed','extracondensed', 'condensed', 'semicondensed', 'normal', 'semiexpanded','expanded', 'extraexpanded', 'ultraexpanded'.

foreground

An RGB color specification such as '#00FF00' or a colorname such as 'red'.

background

An RGB color specification such as '#00FF00' or a colorname such as 'red'.

underline

The underline style - one of 'single', 'double', 'low',or 'none'.

rise

The vertical displacement from the baseline, in tenthousandths of an em. Can be negative for subscript, positive forsuperscript.

strikethrough

'true' or 'false' whether to strike through thetext.

fallback

If True enable fallback to other fontsof characters are missing from the current font. If disabled, thencharacters will only be used from the closest matching font on thesystem. No fallback will be done to other fonts on the system that mightcontain the characters in the text. Fallback is enabled by default. Mostapplications should not disable fallback.

lang

A language code, indicating the textlanguage.

There are a number of convenience tags that encapsulate specificspan options:

Tutorial

b

Make the text bold.

big

Makes font relatively larger, equivalent to <spansize='larger'>.

i

Make the text italic.

s

Strikethrough the text.

sub

Subscript the text.

sup

Superscript the text.

small

Makes font relatively smaller, equivalent to <spansize='smaller'>.

tt

Use a monospace font.

u

Underline the text.
Mathematical Markup Language

Gitlab Toc

  1. язык разметки математический

язык разметки математический
Базирующийся на соглашениях XML язык разметки текстов, содержащих математические формулы. Начальная версия этого языка Mathematical Markup Language (MathML), Version 1.0 была одобрена в качестве стандарта W3C в апреле 1998 г. [http://libweb.rsl.ru/resource/docs/xml/xml-gloss.ru.html].
[http://www.morepc.ru/dict/]

Тематики

  • информационные технологии в целом

EN

Language
  • Mathematical Markup Language
  • MathML

Github Markup Language

Англо-русский словарь нормативно-технической терминологии. academic.ru. 2015.

Смотреть что такое 'Mathematical Markup Language' в других словарях:

Github Markdown Syntax

  • Mathematical Markup Language — Mathematical Markup Language, MathML … Universal-Lexikon

  • Mathematical Markup Language — Vorlage:Infobox Dateiformat/Wartung/MagischeZahl fehltVorlage:Infobox Dateiformat/Wartung/Art fehltVorlage:Infobox Dateiformat/Wartung/Website fehlt Mathematical Markup Language Dateiendung: .mml MIME Type … Deutsch Wikipedia

  • mathematical markup language — noun A method of representing mathematical symbols and formulae using XML … Wiktionary

  • Mathematical markup languages — A mathematical markup language is a computer notation for representing mathematical formulae, based on mathematical notation. Specialized markup languages are necessary because computers normally deal with linear text and more limited character… … Wikipedia

  • Markup language — Example of RecipeBook, a simple markup language based on XML for creating recipes. The markup can be converted to HTML, PDF and Rich Text Format using a programming language or XSL. A markup language is a modern system for annotating a text in a… … Wikipedia

  • ColdFusion Markup Language — CFML redirects here. For the radio station, see CFML FM. Cold Fusion Markup Language (CFML) Paradigm(s) imperative, object oriented Appeared in 1995 Designed by Jeremy Allaire Developer Adobe System … Wikipedia

  • Lightweight markup language — A lightweight markup language is a markup language with a simple syntax, designed to be easy for a human to enter with a simple text editor, and easy to read in its raw form. Lightweight markup languages are used in applications where people… … Wikipedia

  • Content syndication markup language — A Content syndication markup language is a markup language that allows for syndication of media across the internet (also known as web feeds). The majority of content syndication markup languages are based upon the XML standard, and are… … Wikipedia

  • Petri Net Markup Language — is an interchange format aimed at enabling Petri net tools to exchange Petri net models.Petri Net Markup Language (PNML) is an XML based syntax for high level Petri nets, which is being designed as a standard interchange format for Petri net… … Wikipedia

  • Mathematical notation — For information on rendering mathematical formulas in Wikipedia, see Help:Formula. See also: Table of mathematical symbols Mathematical notation is a system of symbolic representations of mathematical objects and ideas. Mathematical notations are … Wikipedia

  • List of document markup languages — The following is a list of document markup languages.Well known document markup languages*HyperText Markup Language (HTML) *Mathematical Markup Language (MathML) *Rich Text Format (RTF) Microsoft format for exchanging documents with other vendors … Wikipedia





Comments are closed.