Beispiel #1
0
        /// <summary>
        /// Remove the registration entry for a Shortcode with the specified name.
        /// </summary>
        /// <param name="name"></param>
        public static void DeregisterShortcode(string name)
        {
            if (_engine == null)
            {
                return;
            }

            _engine.DeregisterShortcode(name);
        }