Re: HTML authoring - specifying a font

2018-03-15 Thread Jean-Christophe Helary


> On Mar 16, 2018, at 9:53, Nori Muster  wrote:
> 
> I know how to set a typeface using  
> But is there a way to change the whole document at the same time, like to put 
> helvetica in the  line?

Yes, it is a technology that's called CSS (cascading style sheets) and it's 
been around for a very long time.

You may want to check the W3schools tutorials to get up to speed:
https://www.w3schools.com/Css/


Jean-Christophe Helary
---
http://mac4translators.blogspot.com @brandelune


-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: HTML authoring - specifying a font

2018-03-15 Thread Rick Gordon
Technically, you could, but it's considered very bad practice in any to 
use any font tags in HTML. And font tags have been deprecated for 
years.  You should always assign fonts (and, as much as possible, any 
code affecting presentation) in CSS, and you can assign them to the body 
element there.


The one possible consideration where it might be considered acceptable 
is in HTML email, but even there, you should assign it as CSS (using 
font-face or font-family).


Don't do it!

Rick Gordon


On March 15, 2018 at 6:25:38 PM [-0700],
Nori Muster wrote in an email entitled
"HTML authoring - specifying a font":

I know how to set a typeface using  
But is there a way to change the whole document at the same time, like 
to put helvetica in the  line?

___
RICK GORDON
EMERALD VALLEY GRAPHICS AND CONSULTING
___
WWW: http://www.shelterpub.com

--
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email

"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups "BBEdit Talk" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: BBEdit and Interarchy

2018-03-15 Thread Nori Muster
I have a similar problem that started about three years ago.
Looks like you make changes to your files directly on Interarchy(?) I 
rework files on my computer then upload them to Interarchy.
When I try to post files to Interarchy, the window slows down and it can 
take a long time for the file to post, it doesn't post at all.
It's almost like the server thinks I'm attacking it. 
It will usually let me post a number of files, then it stops. Very 
frustrating.
May be related to what you're experiencing.
The hotspot on my phone does better, but that sometimes gets blocked too.


On Thursday, March 15, 2018 at 1:51:08 PM UTC-7, Hyper Viper wrote:
>
> Hi, all,
> in the last few days, after +20 years of satisfying use, I am experiencing 
> a problem between BBEdit and Interarchy.
> I am using the most recent versions of Mac OS (High Sierra), BBEdit 
> (12.1.2) and Interarchy (10.0.7 sic!).
> If I try to edit a file with command+j and then try to save, Interarchy 
> doesn't save. 
> The problem seems related to Interarchy, I am here to ask if someone alse 
> has experienced the same situation
> and found a solution.
> Thank you in advance.
>
>

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


HTML authoring - specifying a font

2018-03-15 Thread Nori Muster
I know how to set a typeface using  
But is there a way to change the whole document at the same time, like to 
put helvetica in the  line?

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


BBEdit and Interarchy

2018-03-15 Thread Hyper Viper
Hi, all,
in the last few days, after +20 years of satisfying use, I am experiencing 
a problem between BBEdit and Interarchy.
I am using the most recent versions of Mac OS (High Sierra), BBEdit 
(12.1.2) and Interarchy (10.0.7 sic!).
If I try to edit a file with command+j and then try to save, Interarchy 
doesn't save. 
The problem seems related to Interarchy, I am here to ask if someone alse 
has experienced the same situation
and found a solution.
Thank you in advance.

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Re: intention unbalanced quote throwing off colorization?

2018-03-15 Thread Sam Hathaway

Here’s a workaround:

```bash
echo $stuff | awk -F $'\x22' '{print $1}'
```

(This will work with most shells, including bash and zsh.)

Hope this helps.
-sam

On 15 Mar 2018, at 12:21, Jeff Grisso wrote:

Hello, some of my bash scripts have intentional unbalanced quote and 
this

is throwing off the script colorization for 'Unix Shell Script'.
Is there a way to tell BBedit to "not count" a specific individual
character instance for colorization?

example code:

echo $stuff | awk -F '"' '{print $1}'  #the double quote next to -F 
will

never be balanced

Thank you!

--
This is the BBEdit Talk public discussion group. If you have a
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
---
You received this message because you are subscribed to the Google 
Groups "BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send 
an email to bbedit+unsubscr...@googlegroups.com.

To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


--
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email

"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups "BBEdit Talk" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


intention unbalanced quote throwing off colorization?

2018-03-15 Thread Jeff Grisso
Hello, some of my bash scripts have intentional unbalanced quote and this 
is throwing off the script colorization for 'Unix Shell Script'. 
Is there a way to tell BBedit to "not count" a specific individual 
character instance for colorization?

example code:

echo $stuff | awk -F '"' '{print $1}'  #the double quote next to -F will 
never be balanced

Thank you!

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.


Persist Sidebar width and Currently Open Documents height

2018-03-15 Thread Nikita Ourazbaev
Hi,

I don’t think I had this issue with BBEdit 11 but I could be wrong.

It seems I have to drag to re-adjust the width of the sidebar and the 
height of the "Currently Open Documents" drawer whenever I open a folder in 
BBEdit. (Folders saved as projects do remember these settings).

Is there a preference where I can set the default widths and heights for 
the sidebar elements?

Thanks
Nikita

-- 
This is the BBEdit Talk public discussion group. If you have a 
feature request or would like to report a problem, please email
"supp...@barebones.com" rather than posting to the group.
Follow @bbedit on Twitter: 
--- 
You received this message because you are subscribed to the Google Groups 
"BBEdit Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to bbedit+unsubscr...@googlegroups.com.
To post to this group, send email to bbedit@googlegroups.com.
Visit this group at https://groups.google.com/group/bbedit.