Skip to content
View Tim-Otte's full-sized avatar
💻
Coding
💻
Coding

Block or report Tim-Otte

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. calorie-counter calorie-counter Public

    Dart 1

  2. With this script you can convert a s... With this script you can convert a string with html tags into an array of html tags with tag name, attributes, inner text and child tags
    1
    <?php
    2
    
                  
    3
    define('HTML_REGEX_PATTERN', '/<([a-zA-Z]+)(?:\s([a-zA-Z]+(?:=(?:".+")|(?:[0-9]+))))*(?:(?:\s\/>)|(?:>(.*)<\/\1>))/');
    4
    
                  
    5
    function isHtmlTag($text) {