Forum Admin: is it possible to prevent the forum software from interpreting code blocks content as markdown?
Note: a workaround in this particular post is to remove spaces following hash signs.
BTW: how about code blocks containing apostrophes?
Here's my home server's smb.conf, in case it would help you solve your Windows interoperability issue (the relevant part is under "Global Settings"):
#NOTE: Whenever you modify this file you should run the command
#"testparm" to check that you have not made any basic syntactic
#errors.
#======================= Global Settings =======================
[global]
workgroup = WORKGROUP
name resolve order = bcast host
domain master = no
local master = no
preferred master = yes
os level = 65
server string = %h server (Samba)
browseable = yes
browse list = yes
enable core files = no
####Networking####
#Required for use with xinetd
#socket options = TCP_NODELAY
#Recommended for use as a service
#interfaces = wlp2s0 enp3s0
#bind interfaces only = yes
####Debugging/Accounting####
log file = /var/log/samba/log.%m
max log size = 10000
syslog = 0
#######Authentication#######
security = user
passdb backend = tdbsam
map to guest = bad user
#======================= Share Definitions =======================
[homes]
comment = Home Directory
browseable = yes
read only = no
guest ok = no
create mask = 0644
directory mask = 0755
force group = %S
valid users = %S
[parents]
comment = Shared folder
path = /home/parents
browseable = yes
read only = no
guest ok = no
create mask = 0660
directory mask = 0770
force directory mode = 0770
force group = parents
valid users = @parents
[all]
comment = Shared folder
path = /home/all
browseable = yes
read only = no
guest ok = no
create mask = 0664
directory mask = 0775
force directory mode = 0775
force group = users
valid users = @users