Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
syntax highlighting
#33
Quote:I replace PHP's nl2br function with a modified function to replace pre tags with the pytohn brush (since that is what we are using to insert codeboxes).
Yeah nice i was messing around with class_parser.php,but could not figure it out.

Some more test,all using Python tag.
Now it's theme midnight,which i think look good.
Different theme is on Page-2,
i am gone change theme to see how it look in forum.
Theme on page-2 did i run in Flask.
Looking for a nice 16x16 icon we can use for button SyntaxHighlighter v4.

Python:
import re

class Hardware(object):
    def __init__(self, name, hardware_id):
        self.name = name
        self.hardware_id = hardware_id

    @property
    def show_info(self):
        '''Show hardwareinfo'''
        print 'Name: {} | hardware_id: {}'.format(self.name, self.hardware_id)

class Cpu(Hardware):
    max_temp = 72
    def __init__(self, name, hardware_id, socket, speed):
        Hardware.__init__(self, name, hardware_id)
        self.socket = socket
        self.speed = speed

    @classmethod
    def heat_advice(cls, current_temp):
        '''Give heat advice to user'''
        if current_temp < cls.max_temp:
            return 'Current temp: {} is ok,under Intel recommended  max temp of: {}'\
        .format(current_temp, cls.max_temp)
        return 'Current temp : {} is over Intel recommended max temp of: {}'\
       .format(current_temp, cls.max_temp)
Html:
<html>
<body>
  <div id='images'>
    <a href='image1.html'>My image 1 <br /><img src='image1_thumb.jpg' /></a>
  </div>
  <div>
    <p class="car">
      <a class="bmw" href="Link to bmw"></a>
      <a class="opel" href="Link to opel"></a>
    </p>
    <p class="end">
      all cars are great
    </p>
  </div>
</body>
</html>
Css:
.all {
    width: 100px;
    height: 100px;
    position: absolute;
    top:0px;
    bottom: 200px;
    left: 0px;
    right: 300px;
    margin: auto;
}

body {
  background: linear-gradient(to left, #616161, #9bc5c3);
}

.parent {
  width: 450px;
  height: 150px;
  text-align: center;
  padding: 20px 17px;
}
Js:
$("#delay input").click(function(e) {
  e.preventDefault();
  setTimeout(function() {
    $("#delay").submit();
  }, 2000);
});
Reply


Messages In This Thread
syntax highlighting - by metulburr - Sep-05-2016, 12:32 AM
RE: syntax highlighting - by snippsat - Sep-07-2016, 06:29 PM
RE: syntax highlighting - by metulburr - Sep-07-2016, 09:25 PM
RE: syntax highlighting - by snippsat - Sep-08-2016, 09:33 AM
RE: syntax highlighting - by metulburr - Sep-08-2016, 11:54 AM
RE: syntax highlighting - by ichabod801 - Sep-14-2016, 11:24 PM
RE: syntax highlighting - by metulburr - Sep-15-2016, 12:25 AM
RE: syntax highlighting - by snippsat - Sep-15-2016, 04:29 PM
RE: syntax highlighting - by metulburr - Sep-15-2016, 05:18 PM
RE: syntax highlighting - by metulburr - Sep-15-2016, 05:25 PM
RE: syntax highlighting - by snippsat - Sep-15-2016, 06:07 PM
RE: syntax highlighting - by metulburr - Sep-15-2016, 06:44 PM
RE: syntax highlighting - by snippsat - Sep-15-2016, 08:41 PM
RE: syntax highlighting - by snippsat - Sep-16-2016, 06:58 PM
RE: syntax highlighting - by metulburr - Sep-16-2016, 08:05 PM
RE: syntax highlighting - by snippsat - Sep-16-2016, 08:44 PM
RE: syntax highlighting - by snippsat - Sep-16-2016, 10:52 PM
RE: syntax highlighting - by metulburr - Sep-16-2016, 11:31 PM
RE: syntax highlighting - by snippsat - Sep-17-2016, 07:17 PM
RE: syntax highlighting - by metulburr - Sep-17-2016, 08:24 PM
RE: syntax highlighting - by snippsat - Sep-18-2016, 01:37 AM
RE: syntax highlighting - by metulburr - Sep-18-2016, 02:01 AM
RE: syntax highlighting - by snippsat - Sep-18-2016, 11:44 AM
RE: syntax highlighting - by metulburr - Sep-18-2016, 01:24 PM
RE: syntax highlighting - by metulburr - Sep-18-2016, 01:26 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 04:17 AM
RE: syntax highlighting - by metulburr - Oct-04-2016, 04:30 AM
RE: syntax highlighting - by snippsat - Oct-04-2016, 05:25 AM
RE: syntax highlighting - by metulburr - Oct-04-2016, 05:28 AM
RE: syntax highlighting - by snippsat - Oct-04-2016, 05:36 AM
RE: syntax highlighting - by metulburr - Oct-04-2016, 05:46 AM
RE: syntax highlighting - by metulburr - Oct-04-2016, 05:48 AM
RE: syntax highlighting - by snippsat - Oct-04-2016, 12:53 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 01:14 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 01:32 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 01:27 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 01:49 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 01:41 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 01:44 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 01:53 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 01:59 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 02:03 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 02:08 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 02:11 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 02:26 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 02:39 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 02:41 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 02:56 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 03:01 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 03:10 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 03:18 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 03:25 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 03:27 PM
RE: syntax highlighting - by snippsat - Oct-04-2016, 06:04 PM
RE: syntax highlighting - by metulburr - Oct-04-2016, 06:14 PM
RE: syntax highlighting - by Larz60+ - Oct-05-2016, 03:18 AM
RE: syntax highlighting - by metulburr - Oct-05-2016, 03:52 AM
RE: syntax highlighting - by Larz60+ - Oct-05-2016, 05:11 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Undo (Ctrl+z) doesn't work on highlighting CynthiaMoore 8 8,409 Apr-25-2020, 05:00 AM
Last Post: buran
  feature request: highlighting Skaperen 9 6,532 Jan-26-2017, 04:13 PM
Last Post: Kebap

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020