Syntax Highlighting

Syntax Hightlighting Plugin Demo
Beispiel Arduino Code
int meinInt = 0;
float meinFloat = 0.2;
char meinCharBuchstabe = 'A';
// 'x' für einzelne Symbole
char meinCharWort = "Sali Welt"; // "x" für Symbolfolgen
// sonderfall: Arduno kann LED_BUILTIN und AX als Integer-
// Variabeln akzeptieren, da sie benutzt werden, um Pins
// anzusteuern:
int meinBuiltinLEDPin = LED_BUILTIN;
int meinAnalogInPin = A0;
Beispiel PHP Code
h1, h2, h3, h4, h5 {
color: var(--gold);
-ms-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
h1 {
line-height: 1.0;
}
h2 {
line-height: 1.3;
}
Beispiel CSS Code
function pxpp_redirect_logged_in_from_login_page() {
// Nur für eingeloggte Nutzer
if ( ! is_user_logged_in() ) {
return;
}
// Hole die in den Einstellungen definierte Login-Seiten-ID
$login_page_id = get_option( 'pxpp_login_redirect_page_id', 0 );
if ( ! $login_page_id ) {
return;
}
// Wenn der aktuelle Seitenaufruf die Login-Seite ist und ein redirect_to-Parameter gesetzt ist, weiterleiten
if ( is_page( $login_page_id ) && ! empty( $_GET['redirect_to'] ) ) {
wp_safe_redirect( esc_url_raw( $_GET['redirect_to'] ) );
exit;
}
}
add_action( 'template_redirect', 'pxpp_redirect_logged_in_from_login_page', 1 );