विवरण
WP-Terminal generates a terminal-like box around your terminal commands.
The code is a modification of WP-Syntax, a source code highlighter plugin for WordPress (https://wordpress.org/extend/plugins/wp-syntax/screenshots/).
Basic Usage
Wrap terminal blocks with <pre id="terminal" user="username" computer="computername">
and </pre>
, being user and computer optional (“user” and “computer” will be shown if you don’t provide them). More usage
examples
Usage
Wrap terminal blocks with <pre id="terminal" user="username" computer="computername">
and </pre>
, being user and computer optional (“user” and “computer” will be shown if you don’t provide them).
Example 1: No customized command
<pre id="terminal">
ls -a
</pre>
Example 2: User and computer customizations
<pre id="terminal" user="mariano" computer="eugene">
ls -a
</pre>
Example 3: Customizing just the user
<pre id="terminal" user="mariano">
ls -a
</pre>
Example 4: Customizing just the computer
<pre id="terminal" computer="eugene">
ls -a
</pre>
Example 5: Multiline commands
<pre id="terminal">
ls
. ..
<br/>
ls -a
. .. .hiden_file
</pre><h3>TODO</h3>1. Allow to specify working dir
2. Allow to customize prompt
स्क्रिनसटहरू
स्थापना
- Upload wp-temrinal.zip to your WordPress plugins directory, usually
wp-content/plugins/
and unzip the file. It will create awp-content/plugins/wp-terminal/
directory. - Activate the plugin through the ‘Plugins’ menu in WordPress.
- Create a post/page that contains a code snippet following the proper usage syntax.
प्रश्नोत्तर
- Q1
समीक्षाहरू
यस प्लगिनको लागि कुनै समीक्षाहरू छैनन्।
योगदानकर्ता र डेभलपरहरू
“WP-Terminal” खुला स्रोत सफ्टवेयर हो। निम्न व्यक्तिहरूले यो प्लगिनमा योगदान गरेका छन्।
योगदानकर्ताहरू“WP-Terminal” लाई आफ्नो भाषामा अनुवाद गर्नुहोस्
विकासमा रुचि छ?
आरएसएस द्वारा कोड ब्राउज गर्नुहोस्, एसभीएन रिपजिटरी हेर्नुहोस्, वा विकास लग को सदस्यता लिनुहोस्।
चेन्जलग
0.2.1: Replacing [prompt] keyword by the prompt and highlighting the prompt in bold (thanks to Almir Mendes (m3nd3s@gmail.com) and rudson (rudsonalves@rra.etc.br))
0.2: Added multiline commands
0.1: First release