formatwhitespace.pm
来自「codestriker is a develop useful tool to 」· PM 代码 · 共 31 行
PM
31 行
package Codestriker::Template::Plugin::FormatWhitespace;# Simple template toolkit plugin module for formatting whitespace.use Template::Plugin::Filter;use Codestriker;use base qw( Template::Plugin::Filter );sub filter { my ($self, $text) = @_; # Get the tabwidth setting from the config. my $tabwidth = $self->{ _CONFIG }->{tabwidth}; # Replace newlines with <br>s. $text =~ s/\n/<br>/mgo; # Replace consective spaces with entities. Its important # start start with a leading space, so that the text can be # broken up when it appears inside a floating div or a table row. $text =~ s/ \s+/' ' x (length($&)-1)/emgo; # Replace tabs. $text = Codestriker::tabadjust($tabwidth, $text, 1); return $text;}1;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?