Hi,
Is it possible to have more than one line of code using markdown? For example, the below works fine:
`
But include more than one line.....
`
PHPSESSIONPATH="/tmp"
PHPSESSIONLIFETIME=$(php -i 2>/dev/null | grep -w session.gc_maxlifetime | awk '{print $3}' | head -1);
PHPSESSIONLIFETIMEMINUTE=$( expr $PHPSESSIONLIFETIME / 60 );
`
and although it changes the font, all three lines are outputted as one line...
PHPSESSIONPATH="/tmp" PHPSESSIONLIFETIME=$(php -i 2>/dev/null | grep -w session.gc_maxlifetime | awk '{print $3}' | head -1); PHPSESSIONLIFETIMEMINUTE=$( expr $PHPSESSIONLIFETIME / 60 );
Not ideal. Is this a bug or am I missing something?